Bienvenue dans l'outil plébiscité par les analystes de données Jupyter.
Il s'agit d'un outil permettant de mixer et d'alterner codes, textes et graphique.
Cet outil est formidable pour plusieurs raisons:
Pour vous aider dans vos premiers pas à l'usage de Jupyter et de Python, nous avons rédigé ce notebook en vous indiquant les instructions à suivre.
Il vous suffit pour cela de saisir le code Python répondant à l'instruction donnée.
Vous verrez de temps à autre le code Python répondant à une instruction donnée mais cela est fait pour vous aider à comprendre la nature du travail qui vous est demandée.
Et garder à l'esprit, qu'il n'y a pas de solution unique pour résoudre un problème et qu'il y a autant de résolutions de problèmes que de développeurs ;)...
#Importation de la librairie Pandas
import pandas as pd
#Importation de la librairie plotly express
import plotly.express as px
import plotly.graph_objects as go
import matplotlib.pyplot as plt
#Trouver dans Google l'instruction permettant d'afficher toutes les colonnes d'un dataframe
#Saisir, dans Google, les mots clés "display all columns dataframe Pandas", par exemple.
#Dans les résultats de la recherche, privilégiez les solutions provenants de Stack Overflow ou Medium
pd.set_option('display.max_columns', None)
#Importation du fichier web.xlsx
df_web = pd.read_excel("web.xlsx")
#Importation du fichier erp.xlsx
df_erp = pd.read_excel("erp.xlsx")
#importation du fichier liaison.xlsx
df_liaison = pd.read_excel("liaison.xlsx")
D:\anaconda3\Lib\site-packages\openpyxl\worksheet\_read_only.py:79: UserWarning: Unknown extension is not supported and will be removed for idx, row in parser.parse(): D:\anaconda3\Lib\site-packages\openpyxl\worksheet\_read_only.py:79: UserWarning: Unknown extension is not supported and will be removed for idx, row in parser.parse(): D:\anaconda3\Lib\site-packages\openpyxl\worksheet\_read_only.py:79: UserWarning: Unknown extension is not supported and will be removed for idx, row in parser.parse():
#Afficher les dimensions du dataset
print("Le tableau comporte {} observation(s) ou article(s)".format(df_erp.shape[0]))
print("Le tableau comporte {} colonne(s)".format(df_erp.shape[1]))
Le tableau comporte 825 observation(s) ou article(s) Le tableau comporte 6 colonne(s)
#Consulter le nombre de colonnes
#La nature des données dans chacune des colonnes
#Le nombre de valeurs présentes dans chacune des colonnes
df_erp.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 825 entries, 0 to 824 Data columns (total 6 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 product_id 825 non-null int64 1 onsale_web 825 non-null int64 2 price 825 non-null float64 3 stock_quantity 825 non-null int64 4 stock_status 825 non-null object 5 purchase_price 825 non-null float64 dtypes: float64(2), int64(3), object(1) memory usage: 38.8+ KB
#Afficher les 5 premières lignes de la table
df_erp.head()
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | |
|---|---|---|---|---|---|---|
| 0 | 3847 | 1 | 24.2 | 16 | instock | 12.88 |
| 1 | 3849 | 1 | 34.3 | 10 | instock | 17.54 |
| 2 | 3850 | 1 | 20.8 | 0 | outofstock | 10.64 |
| 3 | 4032 | 1 | 14.1 | 26 | instock | 6.92 |
| 4 | 4039 | 1 | 46.0 | 3 | outofstock | 23.77 |
#Vérifier si il y a les lignes en doublons dans la colonne product_id
df_erp['product_id'].duplicated().any()
False
#Afficher les valeurs distinctes de la colonne stock_status
#À quelle(s) autre(s) colonne(s) sont-elles liées ?
df_erp['stock_status'].unique()
array(['instock', 'outofstock'], dtype=object)
#Création d'une colonne "stock_status_2
#La valeur de cette deuxième colonne sera fonction de la valeur dans la colonne "stock_quantity"
#si la valeur de la colonne "stock_quantity" est nulle renseigner "outofstock" sinon mettre "instock"
df_erp['stock_status_2'] = None
def isinstock(row):
if row['stock_quantity'] > 0:
return 'instock'
else:
return 'outofstock'
df_erp['stock_status_2'] = df_erp.apply(isinstock, axis=1)
#Vérifions que les 2 colonnes sont identiques:
#Les 2 colonnes sont strictement identiques si les valeurs de chaque ligne sont strictement identiques 2 à 2
#La comparaison de 2 colonnes peut se réaliser simplement avec l'instruction ci-dessous:
df_erp["stock_status"] == df_erp["stock_status_2"]
#Le résultat est l'affichage de True ou False pour chacune des lignes du dataset
#C'est un bon début, mais difficile à exploiter
0 True
1 True
2 True
3 True
4 False
...
820 True
821 True
822 True
823 True
824 True
Length: 825, dtype: bool
#Mais il est possible de synthétiser ce résultat en effectuant la somme de cette colonne:
#True vaut 1 et False 0
#Nous devrions obtenir la somme de 824 qui correspond au nombre de lignes dans ce dataset
(df_erp["stock_status"] == df_erp["stock_status_2"]).sum()
823
#Si les colonnes ne sont absolument pas identiques ligne à ligne alors identifier la ligne en écart
##Dans ce cas je vous ce lien pour apprendre à réaliser des filtres dans Pandas:
##https://bitbucket.org/hrojas/learn-pandas/src/master/
##Lesson 3
filtre = (df_erp["stock_status_2"] != df_erp["stock_status"])
print(filtre)
0 False
1 False
2 False
3 False
4 True
...
820 False
821 False
822 False
823 False
824 False
Length: 825, dtype: bool
#Corriger la ou les données incohérentes
df_erp.loc[filtre, 'stock_status_2'] = df_erp["stock_status"]
#Verification en utilisant le même code que plus haut pour afficher les problemes
(df_erp["stock_status_2"] == df_erp["stock_status"]).sum()
825
###############
## LES PRIX ##
###############
#Vérification des prix: Y a t-il des prix non renseignés, négatif ou nul?
prix_na = df_erp['price'].isna().sum()
prix_null = df_erp['price'].isnull().sum()
prix_négatif = df_erp['price'].loc[df_erp['price'] == 0].count()
#Afficher le ou les prix non renseignés dans la colonne "price"
print(f"Nombres d'article avec un prix non renseignés: {prix_na} ou une valeur null {prix_null} ou négatif {prix_négatif}")
#Afficher le prix minimum de la colonne "price"
prix_min = df_erp['price'].min()
print(f"Le prix le plus bas est {prix_min}")
#Afficher le prix maximum de la colonne "price"
prix_max = df_erp['price'].max()
print(f"Le prix le plus haut est {prix_max}")
#Afficher les prix inférieurs à 0 (qu'est ce qu'il faut en faire ?)
df_erp['price'] = df_erp['price'].abs()
prix_min = df_erp['price'].min()
print(f"Nouveau prix le plus bas est {prix_min}")
Nombres d'article avec un prix non renseignés: 0 ou une valeur null 0 ou négatif 0 Le prix le plus bas est -20.0 Le prix le plus haut est 225.0 Nouveau prix le plus bas est 5.2
#######################
### stock_quantity ###
#######################
#Vérification de la colonne stock quantity
#Afficher la quantité minimum de la colonne "stock_quantity"
stock_max = df_erp['stock_quantity'].max()
#Afficher la quantité maximum de la colonne "stock_quantity"
stock_min = df_erp['stock_quantity'].min()
#Afficher les stocks inférieurs à 0 (qu'est ce qu'il faut en faire ?)
stock_inf_zero = df_erp['price'].loc[df_erp['stock_quantity'] < 0].count()
stock_inf_zero = df_erp.loc[df_erp['stock_quantity'] < 0, 'stock_quantity'] = 0
print(f"{stock_max}, {stock_min}, {stock_inf_zero}")
df_erp.sort_values(by='stock_quantity', ascending=True)
145, -10, 0
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | stock_status_2 | |
|---|---|---|---|---|---|---|---|
| 326 | 4706 | 1 | 16.8 | 0 | outofstock | 8.68 | outofstock |
| 188 | 4283 | 1 | 27.0 | 0 | outofstock | 13.25 | outofstock |
| 185 | 4279 | 0 | 10.8 | 0 | outofstock | 5.64 | outofstock |
| 184 | 4278 | 0 | 21.5 | 0 | outofstock | 10.78 | outofstock |
| 180 | 4274 | 1 | 12.9 | 0 | outofstock | 6.33 | outofstock |
| ... | ... | ... | ... | ... | ... | ... | ... |
| 475 | 5025 | 1 | 112.0 | 136 | instock | 68.60 | instock |
| 697 | 6126 | 1 | 135.0 | 138 | instock | 80.33 | instock |
| 203 | 4334 | 1 | 49.0 | 142 | instock | 30.01 | instock |
| 205 | 4337 | 1 | 83.0 | 145 | instock | 48.90 | instock |
| 207 | 4350 | 1 | 79.5 | 145 | instock | 47.30 | instock |
825 rows × 7 columns
df_erp.head()
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | stock_status_2 | |
|---|---|---|---|---|---|---|---|
| 0 | 3847 | 1 | 24.2 | 16 | instock | 12.88 | instock |
| 1 | 3849 | 1 | 34.3 | 10 | instock | 17.54 | instock |
| 2 | 3850 | 1 | 20.8 | 0 | outofstock | 10.64 | outofstock |
| 3 | 4032 | 1 | 14.1 | 26 | instock | 6.92 | instock |
| 4 | 4039 | 1 | 46.0 | 3 | outofstock | 23.77 | outofstock |
#Vérification de la colonne onsale_web et des valeurs qu'elle contient? Que signifient-elles?
df_erp['onsale_web'].unique()
array([1, 0], dtype=int64)
#Quelles sont les colonnes à conserver selon vous?
#toutes sauf 'stock_status_2'
#Supprimer la colonne comportant le libellé "stock_status_2" car elle est redondante
#avec la colonne "stock_status".
df_erp = df_erp.drop(columns={'stock_status_2'})
df_erp.head()
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | |
|---|---|---|---|---|---|---|
| 0 | 3847 | 1 | 24.2 | 16 | instock | 12.88 |
| 1 | 3849 | 1 | 34.3 | 10 | instock | 17.54 |
| 2 | 3850 | 1 | 20.8 | 0 | outofstock | 10.64 |
| 3 | 4032 | 1 | 14.1 | 26 | instock | 6.92 |
| 4 | 4039 | 1 | 46.0 | 3 | outofstock | 23.77 |
######################
## prix d'achat ##
######################
#Vérification de la colonne purchase_price :
#Afficher le ou les prix non renseignés dans la colonne "purchase_price"
prix_na = df_erp['purchase_price'].isna().sum()
prix_null = df_erp['purchase_price'].isnull().sum()
prix_inf_zero = df_erp['purchase_price'].loc[df_erp['purchase_price'] < 0].count()
print(f"Nombre de valeur non existante, null, ou négatif {prix_na}, {prix_null}, {prix_inf_zero}")
#Afficher le prix minimum de la colonne "purchase_price"
prix_max = df_erp['purchase_price'].max()
#Afficher le prix maximum de la colonne "purchase_price"
prix_min = df_erp['purchase_price'].min()
print(f"Prix min, {prix_min}")
print(f"Prix max, {prix_max}")
Nombre de valeur non existante, null, ou négatif 0, 0, 0 Prix min, 2.74 Prix max, 137.81
#Dimension du dataset
#Nombre d'observations
print(f"Le fichier web.xlsx comporte {df_web.shape[0]} ligne(s)")
#Nombre de caractéristiques
print(f"Le fichier web.xlsx comporte {df_web.shape[1]} colonne(s)")
Le fichier web.xlsx comporte 1513 ligne(s) Le fichier web.xlsx comporte 29 colonne(s)
#Consulter le nombre de colonnes
#La nature des données dans chacune des colonnes
#Le nombre de valeurs présentes dans chacune des colonnes
df_web.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 1513 entries, 0 to 1512 Data columns (total 29 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 sku 1428 non-null object 1 virtual 1513 non-null int64 2 downloadable 1513 non-null int64 3 rating_count 1513 non-null int64 4 average_rating 1430 non-null float64 5 total_sales 1430 non-null float64 6 tax_status 716 non-null object 7 tax_class 0 non-null float64 8 post_author 1430 non-null float64 9 post_date 1430 non-null datetime64[ns] 10 post_date_gmt 1430 non-null datetime64[ns] 11 post_content 0 non-null float64 12 product_type 1429 non-null object 13 post_title 1430 non-null object 14 post_excerpt 716 non-null object 15 post_status 1430 non-null object 16 comment_status 1430 non-null object 17 ping_status 1430 non-null object 18 post_password 0 non-null float64 19 post_name 1430 non-null object 20 post_modified 1430 non-null datetime64[ns] 21 post_modified_gmt 1430 non-null datetime64[ns] 22 post_content_filtered 0 non-null float64 23 post_parent 1430 non-null float64 24 guid 1430 non-null object 25 menu_order 1430 non-null float64 26 post_type 1430 non-null object 27 post_mime_type 714 non-null object 28 comment_count 1430 non-null float64 dtypes: datetime64[ns](4), float64(10), int64(3), object(12) memory usage: 342.9+ KB
#Selon vous, quelles sont les colonnes à conserver ?
#Les colonnes avec des éléments à l'intérieur
#Si vous avez défini des colonnes à supprimer, effectuer l'opération
df_web = df_web.drop(columns={'tax_class','post_content', 'post_password', 'post_content_filtered'})
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
#Visualisation des valeurs de la colonne sku
#Quelles sont les valeurs qui ne semblent pas respecter la régle de codification?
df_web.head(len(df_web))
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | NaN | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 2 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 3 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | NaN | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 4 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | NaN | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 5 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 6 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 7 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | NaN | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 8 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | NaN | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 9 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 10 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 11 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 12 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 13 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 14 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 15 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 16 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 17 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 18 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 19 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | NaN | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 20 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 21 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 22 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 23 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 24 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 25 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 26 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | NaN | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 27 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 28 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 29 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 30 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | NaN | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 31 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 32 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | NaN | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 33 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 34 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | NaN | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 35 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 36 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 37 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 38 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 39 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 40 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 41 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 42 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | NaN | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 43 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 44 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 45 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | NaN | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 46 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 47 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | NaN | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 48 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | NaN | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 49 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 50 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | NaN | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 51 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 52 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | NaN | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 53 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 54 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 55 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 56 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 57 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 58 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | NaN | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 59 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 60 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | NaN | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 61 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 62 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 63 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 64 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 65 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | NaN | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 66 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 67 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 68 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | NaN | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 69 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 70 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 71 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 72 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | NaN | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 73 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 74 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 75 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 76 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | NaN | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 77 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 78 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 79 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 80 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 81 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 82 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 83 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | NaN | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 84 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 85 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 86 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 87 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | NaN | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 88 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 89 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 90 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 91 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 92 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 93 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | NaN | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 94 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 95 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 96 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 97 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | NaN | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 98 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 99 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 100 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | NaN | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 101 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 102 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 103 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 104 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | NaN | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 105 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 106 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 107 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 108 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 109 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 110 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | NaN | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 111 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 112 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 113 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 114 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 115 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | NaN | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 116 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 117 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 118 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 119 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 120 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 121 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 122 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | NaN | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 123 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 124 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 125 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 126 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | NaN | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 127 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 128 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | NaN | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 129 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 130 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 131 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 132 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 133 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | NaN | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 134 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 135 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 136 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 137 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | NaN | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 138 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 139 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 140 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | NaN | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 141 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 142 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | NaN | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 143 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 144 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 145 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 146 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 147 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | NaN | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 148 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 149 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | NaN | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 150 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | NaN | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 151 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 152 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | NaN | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 153 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 154 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 155 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 156 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | NaN | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 157 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 158 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 159 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 160 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 161 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 162 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 163 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 164 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 165 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 166 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 167 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 168 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | NaN | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 169 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 170 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 171 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 172 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 173 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 174 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 175 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 176 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 177 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | NaN | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 178 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 179 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 180 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | NaN | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 181 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 182 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 183 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | NaN | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 184 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 185 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | NaN | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 186 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 187 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | NaN | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 188 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 189 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | NaN | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 190 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | NaN | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 191 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 192 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 193 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 194 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 195 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 196 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | NaN | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 197 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 198 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 199 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 200 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 201 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | NaN | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 202 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | NaN | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 203 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 204 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 205 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 206 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | NaN | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 207 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 208 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | NaN | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 209 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 210 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | NaN | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 211 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 212 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 213 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 214 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | NaN | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 215 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 216 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 217 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 218 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | NaN | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 219 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 220 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | NaN | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 221 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 222 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 223 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 224 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 225 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 226 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 227 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | NaN | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 228 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 229 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | NaN | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 230 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 231 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | NaN | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 232 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 233 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 234 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 235 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 236 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 237 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 238 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 239 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 240 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 241 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 242 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 243 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 244 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 245 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 246 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | NaN | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 247 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 248 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | NaN | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 249 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 250 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | NaN | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 251 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 252 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 253 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | NaN | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 254 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 255 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | NaN | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 256 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 257 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 258 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | NaN | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 259 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 260 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | NaN | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 261 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 262 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | NaN | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 263 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 264 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 265 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | NaN | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 266 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 267 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 268 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 269 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 270 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 271 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | NaN | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 272 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 273 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | NaN | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 274 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 275 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 276 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 277 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | NaN | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 278 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 279 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 280 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | NaN | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 281 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 282 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | NaN | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 283 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 284 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 285 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 286 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 287 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | NaN | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 288 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 289 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | NaN | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 290 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | NaN | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 291 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 292 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | NaN | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 293 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 294 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | NaN | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 295 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 296 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 297 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 298 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 299 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 300 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 301 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 302 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 303 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 304 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 305 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 306 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | NaN | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 307 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 308 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 309 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 310 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 311 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 312 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 313 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 314 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | NaN | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 315 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 316 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 317 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 318 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 319 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | NaN | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 320 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 321 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 322 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 323 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 324 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 325 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | NaN | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 326 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | NaN | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 327 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 328 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | NaN | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 329 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 330 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | NaN | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 331 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 332 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 333 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 334 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 335 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | NaN | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 336 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 337 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | NaN | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 338 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | NaN | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 339 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 340 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 341 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 342 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | NaN | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 343 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 344 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | NaN | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 345 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 346 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | NaN | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 347 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 348 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | NaN | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 349 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 350 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | NaN | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 351 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 352 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 353 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | NaN | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 354 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 355 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 356 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 357 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 358 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 359 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 360 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 361 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | NaN | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 362 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 363 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 364 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | NaN | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 365 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 366 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 367 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | NaN | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 368 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 369 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | NaN | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 370 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 371 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | NaN | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 372 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | NaN | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 373 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 374 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 375 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 376 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 377 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | NaN | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 378 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 379 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | NaN | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 380 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 381 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | NaN | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 382 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 383 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | NaN | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 384 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 385 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 386 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | NaN | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | NaN | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 387 | 14561 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 388 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 389 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 390 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 391 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 392 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 393 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 394 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | NaN | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 395 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 396 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | NaN | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 397 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 398 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 399 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | NaN | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 400 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 401 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 402 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 403 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | NaN | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 404 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | NaN | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 405 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 406 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 407 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | NaN | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 408 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 409 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | NaN | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 410 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 411 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 412 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 413 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 414 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 415 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 416 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 417 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 418 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 419 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 420 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 421 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 422 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 423 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | NaN | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 424 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 425 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 426 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 427 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | NaN | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 428 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | NaN | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 429 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 430 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | NaN | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 431 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 432 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 433 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | NaN | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 434 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 435 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 436 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 437 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 438 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | NaN | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 439 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 440 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | NaN | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 441 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 442 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | NaN | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 443 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 444 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 445 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | NaN | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 446 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 447 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 448 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 449 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | NaN | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 450 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 451 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 452 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 453 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | NaN | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 454 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | NaN | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 455 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 456 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 457 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | NaN | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 458 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | NaN | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 459 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 460 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 461 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | NaN | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 462 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 463 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | NaN | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 464 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 465 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 466 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 467 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 468 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 469 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 470 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | NaN | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 471 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 472 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 473 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | NaN | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 474 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 475 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | NaN | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 476 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | NaN | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 477 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 478 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 479 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | NaN | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | NaN | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 480 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 481 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 482 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | NaN | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 483 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 484 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | NaN | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 485 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 486 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 487 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | NaN | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 488 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | NaN | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 489 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 490 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 491 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | NaN | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 492 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 493 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | NaN | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 494 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 495 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 496 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 497 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 498 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 499 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 500 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 501 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | NaN | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 502 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | NaN | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 503 | 14950 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 504 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | NaN | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 505 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 506 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 507 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | NaN | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 508 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | NaN | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 509 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 510 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 511 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 512 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | NaN | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 513 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 514 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 515 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | NaN | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 516 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | NaN | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 517 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 518 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 519 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | NaN | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 520 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 521 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 522 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | NaN | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 523 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 524 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 525 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 526 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 527 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 528 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 529 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | NaN | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 530 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | NaN | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 531 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 532 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 533 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 534 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 535 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 536 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 537 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 538 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 539 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 540 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 541 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 542 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 543 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | NaN | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 544 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 545 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | NaN | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 546 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | NaN | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 547 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 548 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | NaN | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 549 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 550 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 551 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 552 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 553 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | NaN | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 554 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | NaN | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 555 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 556 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 557 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | NaN | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 558 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | NaN | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 559 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 560 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 561 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | NaN | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 562 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 563 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | NaN | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 564 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 565 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | NaN | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 566 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 567 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | NaN | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 568 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 569 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | NaN | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 570 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 571 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 572 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 573 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 574 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 575 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 576 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 577 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | NaN | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 578 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 579 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 580 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | NaN | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 581 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 582 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 583 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | NaN | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 584 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 585 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 586 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 587 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | NaN | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 588 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 589 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 590 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | NaN | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 591 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 592 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 593 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 594 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | NaN | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 595 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 596 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | NaN | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 597 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 598 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 599 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | NaN | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 600 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | NaN | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 601 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 602 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 603 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 604 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | NaN | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 605 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 606 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 607 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 608 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 609 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 610 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 611 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 612 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 613 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 614 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | NaN | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 615 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 616 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | NaN | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 617 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 618 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 619 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | NaN | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 620 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 621 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | NaN | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 622 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 623 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | NaN | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 624 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 625 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 626 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 627 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | NaN | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 628 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 629 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | NaN | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 630 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | NaN | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 631 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 632 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | NaN | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 633 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 634 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 635 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 636 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 637 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 638 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 639 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 640 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 641 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 642 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 643 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 644 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 645 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 646 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 647 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 648 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 649 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 650 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 651 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 652 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | NaN | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 653 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 654 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 655 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 656 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 657 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | NaN | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 658 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 659 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 660 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | NaN | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 661 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 662 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 663 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 664 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 665 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 666 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 667 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 668 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 669 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | NaN | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 670 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | NaN | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 671 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 672 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 673 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 674 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 675 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 676 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 677 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 678 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 679 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 680 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 681 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 682 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 683 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | NaN | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 684 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | NaN | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 685 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 686 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 687 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 688 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 689 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 690 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 691 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 692 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 693 | 15346 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 694 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | NaN | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 695 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 696 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 697 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 698 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | NaN | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 699 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 700 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | NaN | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 701 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 702 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 703 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | NaN | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 704 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 705 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 706 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 707 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | NaN | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 708 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | NaN | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 709 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 710 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | NaN | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 711 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 712 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | NaN | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 713 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 714 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | NaN | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 715 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 716 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | NaN | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 717 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 718 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | NaN | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 719 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 720 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 721 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | NaN | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 722 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 723 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | NaN | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 724 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | NaN | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 725 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 726 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 727 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | NaN | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | NaN | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 728 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 729 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 730 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 731 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | NaN | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 732 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 733 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | NaN | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 734 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 735 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 736 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 737 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 738 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 739 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 740 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 741 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | NaN | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 742 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 743 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | NaN | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 744 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 745 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 746 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 747 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 748 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 749 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | NaN | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 750 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 751 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 752 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 753 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 754 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 755 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | NaN | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 756 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 757 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 758 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 759 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | NaN | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 760 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 761 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | NaN | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 762 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 763 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 764 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 765 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 766 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 767 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 768 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 769 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 770 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 771 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 772 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 773 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 774 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 775 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 776 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | NaN | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 777 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 778 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 779 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | NaN | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 780 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | NaN | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 781 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 782 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 783 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 784 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 785 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 786 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 787 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 788 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 789 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | NaN | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 790 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 791 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 792 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | NaN | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 793 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 794 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 795 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 796 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 797 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 798 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 799 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 800 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 801 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 802 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 803 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | NaN | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 804 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 805 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | NaN | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 806 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 807 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | NaN | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 808 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 809 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 810 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 811 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 812 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | NaN | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 813 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 814 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | NaN | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 815 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 816 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 817 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | NaN | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 818 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 819 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 820 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | NaN | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 821 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 822 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 823 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | NaN | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 824 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 825 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | NaN | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 826 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 827 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 828 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 829 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 830 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | NaN | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 831 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 832 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 833 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 834 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 835 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 836 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | NaN | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 837 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 838 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 839 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 840 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 841 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | NaN | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 842 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 843 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 844 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 845 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | NaN | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 846 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | NaN | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 847 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 848 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 849 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | NaN | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 850 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 851 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 852 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 853 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 854 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 855 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 856 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 857 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 858 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | NaN | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 859 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 860 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 861 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 862 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 863 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 864 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 865 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 866 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 867 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 868 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 869 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | NaN | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 870 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 871 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 872 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | NaN | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 873 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 874 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 875 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | NaN | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 876 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 877 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 878 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 879 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 880 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | NaN | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 881 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 882 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 883 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 884 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 885 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | NaN | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 886 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | NaN | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 887 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 888 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | NaN | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 889 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 890 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | NaN | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 891 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 892 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 893 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 894 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | NaN | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 895 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 896 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | NaN | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 897 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 898 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 899 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | NaN | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 900 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | NaN | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 901 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 902 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | NaN | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 903 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 904 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 905 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 906 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 907 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 908 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 909 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 910 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 911 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | NaN | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 912 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | NaN | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 913 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 914 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 915 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 916 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 917 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 918 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 919 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | NaN | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 920 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | NaN | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 921 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 922 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 923 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 924 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 925 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 926 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | NaN | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 927 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 928 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 929 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 930 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 931 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | NaN | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 932 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 933 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | NaN | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 934 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | NaN | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 935 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 936 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 937 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 938 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 939 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | NaN | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 940 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | NaN | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 941 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 942 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 943 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 944 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 945 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 946 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 947 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 948 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 949 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | NaN | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 950 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | NaN | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 951 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 952 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 953 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | NaN | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 954 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 955 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | NaN | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 956 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | NaN | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | NaN | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 957 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 958 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 959 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 960 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 961 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 962 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 963 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 964 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | NaN | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 965 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 966 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 967 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | NaN | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 968 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 969 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 970 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | NaN | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 971 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 972 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 973 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 974 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 975 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | NaN | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 976 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 977 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 978 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 979 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 980 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 981 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | NaN | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 982 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 983 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | NaN | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 984 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 985 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | NaN | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 986 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 987 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 988 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 989 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 990 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 991 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | NaN | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 992 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | NaN | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 993 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 994 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 995 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 996 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 997 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 998 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 999 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1000 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1001 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1002 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1003 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1004 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1005 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1006 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1007 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | NaN | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1008 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1009 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1010 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1011 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | NaN | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1012 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1013 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1014 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | NaN | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1015 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1016 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1017 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1018 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1019 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1020 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1021 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | NaN | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1022 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1023 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | NaN | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1024 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1025 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | NaN | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1026 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1027 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1028 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1029 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1030 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1031 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1032 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1033 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1034 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1035 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1036 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1037 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1038 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | NaN | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1039 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1040 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | NaN | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1041 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1042 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1043 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1044 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | NaN | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1045 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1046 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1047 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1048 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1049 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1050 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1051 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1052 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | NaN | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1053 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1054 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1055 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | NaN | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1056 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | NaN | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1057 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1058 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1059 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | NaN | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1060 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1061 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | NaN | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1062 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1063 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1064 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1065 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1066 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | NaN | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1067 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1068 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1069 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | NaN | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1070 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | NaN | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1071 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1072 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1073 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1074 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | NaN | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1075 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1076 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1077 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | NaN | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1078 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1079 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1080 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1081 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1082 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1083 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1084 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | NaN | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1085 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1086 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1087 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1088 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1089 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1090 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | NaN | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1091 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1092 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1093 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1094 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1095 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1096 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1097 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1098 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | NaN | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1099 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1100 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1101 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | NaN | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1102 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1103 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | NaN | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1104 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1105 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1106 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1107 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1108 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1109 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1110 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1111 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1112 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | NaN | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1113 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1114 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1115 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1116 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | NaN | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1117 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1118 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1119 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1120 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1121 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1122 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1123 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | NaN | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1124 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1125 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1126 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | NaN | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1127 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1128 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1129 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1130 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1131 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1132 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1133 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1134 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1135 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1136 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1137 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | NaN | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1138 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1139 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | NaN | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1140 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1141 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1142 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1143 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1144 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1145 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | NaN | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1146 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1147 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | NaN | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1148 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1149 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1150 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1151 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1152 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1153 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1154 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1155 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | NaN | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1156 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1157 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1158 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1159 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | NaN | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1160 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1161 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1162 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1163 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1164 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | NaN | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1165 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1166 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1167 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1168 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1169 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1170 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1171 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1172 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1173 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1174 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1175 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1176 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1177 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1178 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1179 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1180 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1181 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | NaN | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1182 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | NaN | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1183 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1184 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1185 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1186 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1187 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1188 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1189 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | NaN | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1190 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1191 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1192 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1193 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1194 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1195 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1196 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1197 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | NaN | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1198 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1199 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | NaN | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1200 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1201 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | NaN | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1202 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | NaN | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1203 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1204 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1205 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | NaN | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1206 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1207 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1208 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | NaN | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1209 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1210 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1211 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1212 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | NaN | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1213 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1214 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | NaN | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1215 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1216 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | NaN | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1217 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1218 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1219 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | NaN | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1220 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1221 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | NaN | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1222 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | NaN | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1223 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1224 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1225 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | NaN | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1226 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1227 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1228 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | NaN | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1229 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1230 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1231 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1232 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1233 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | NaN | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1234 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1235 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | NaN | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1236 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | NaN | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1237 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1238 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1239 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | NaN | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1240 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1241 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1242 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1243 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1244 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1245 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1246 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1247 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1248 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1249 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1250 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1251 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1252 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1253 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | NaN | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1254 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1255 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1256 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1257 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1258 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | NaN | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1259 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1260 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1261 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1262 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1263 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | NaN | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1264 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1265 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1266 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1267 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | NaN | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1268 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | NaN | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1269 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1270 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1271 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | NaN | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1272 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1273 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | NaN | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1274 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1275 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1276 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1277 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1278 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1279 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1280 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1281 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1282 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | NaN | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1283 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1284 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | NaN | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1285 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1286 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | NaN | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1287 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1288 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | NaN | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1289 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1290 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1291 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | NaN | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1292 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1293 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1294 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1295 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1296 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1297 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1298 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1299 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1300 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1301 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1302 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1303 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | NaN | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1304 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1305 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1306 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | NaN | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1307 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1308 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1309 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1310 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1311 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1312 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1313 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1314 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1315 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1316 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1317 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1318 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1319 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1320 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1321 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1322 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1323 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | NaN | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1324 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1325 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1326 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1327 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1328 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | NaN | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1329 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1330 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | NaN | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1331 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1332 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1333 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | NaN | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1334 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1335 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | NaN | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1336 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1337 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1338 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1339 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1340 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1341 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1342 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1343 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | NaN | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1344 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1345 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1346 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1347 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1348 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | NaN | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1349 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1350 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1351 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | NaN | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1352 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1353 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1354 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1355 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | NaN | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1356 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1357 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | NaN | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1358 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1359 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | NaN | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1360 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1361 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1362 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1363 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1364 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1365 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1366 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | NaN | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1367 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1368 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1369 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | NaN | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1370 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1371 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1372 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1373 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1374 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1375 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | NaN | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1376 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1377 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | NaN | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1378 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | NaN | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1379 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1380 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1381 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1382 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1383 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1384 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1385 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1386 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1387 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1388 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1389 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1390 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1391 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1392 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | NaN | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1393 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1394 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1395 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1396 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1397 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | NaN | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1398 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | NaN | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1399 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1400 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | NaN | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1401 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1402 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1403 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | NaN | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1404 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1405 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1406 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1407 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1408 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1409 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | NaN | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1410 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1411 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | NaN | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1412 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | NaN | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1413 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1414 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | NaN | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1415 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1416 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1417 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1418 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1419 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | NaN | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1420 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | NaN | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1421 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1422 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1423 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | NaN | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1424 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1425 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1426 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | Autre | Bon cadeau de 25€ | NaN | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1427 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | NaN | Bon cadeau de 25€ | <span style="color: #a85253;"><strong>Parlons ... | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1428 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1429 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1430 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1431 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1432 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1433 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1434 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1435 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1436 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1437 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1438 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1439 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1440 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1441 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1442 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1443 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1444 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1445 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1446 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1447 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1448 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1449 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1450 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1451 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1452 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1453 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1454 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1455 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1456 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1457 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1458 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1459 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1460 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1461 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1462 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1463 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1464 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1465 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1466 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1467 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1468 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1469 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1470 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1471 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1472 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1473 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1474 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1475 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1476 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1477 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1478 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1479 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1480 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1481 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1482 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1483 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1484 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1485 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1486 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1487 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1488 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1489 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1490 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1491 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1492 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1493 | NaN | 0 | 0 | 0 | 0.0 | -56.0 | taxable | 2.0 | 2018-08-08 11:23:43 | 2018-08-08 09:23:43 | Vin | Pierre Jean Villa Condrieu Jardin Suspendu 2018 | <span id="u1194-83">Le nez séduit par ses parf... | publish | closed | closed | pierre-jean-villa-condrieu-suspendu-2018 | 2019-11-02 13:24:01 | 2019-11-02 12:24:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1494 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1495 | NaN | 0 | 0 | 0 | 0.0 | -17.0 | taxable | 2.0 | 2018-07-31 12:07:23 | 2018-07-31 10:07:23 | Vin | Pierre Jean Villa Côte Rôtie Fongeant 2017 | Fongeant 2017 explose sur un fruit brillant, p... | publish | closed | closed | pierre-jean-villa-cote-rotie-fongeant-2017 | 2019-11-02 13:24:15 | 2019-11-02 12:24:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1496 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1497 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1498 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1499 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1500 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1501 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1502 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1503 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1504 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1505 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1506 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1507 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1508 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1509 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1510 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1511 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1512 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
#Si vous avez identifié des codes articles ne respectant pas la régle de codification, consultez-les?
l = []
l_non_int = []
def int_filter(x):
if isinstance(x, int):
l.append(x)
else:
l_non_int.append(x)
df_web['sku'].apply(int_filter)
print(l_non_int)
['13127-1', '13127-1', 'bon-cadeau-25-euros', 'bon-cadeau-25-euros', nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan, nan]
#Identifier les lignes sans code articles
df_rebus = pd.DataFrame(l_non_int)
df_rebus.head()
| 0 | |
|---|---|
| 0 | 13127-1 |
| 1 | 13127-1 |
| 2 | bon-cadeau-25-euros |
| 3 | bon-cadeau-25-euros |
| 4 | NaN |
#Pour les codes articles identifiés, réalisé une analyse et définissez l'action à entreprendre
df_web_filtrer = df_web.loc[df_web['sku'].isin(df_rebus[0])]
df_web_filtrer.head()
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1424 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1425 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1426 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | Autre | Bon cadeau de 25€ | NaN | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1427 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | NaN | Bon cadeau de 25€ | <span style="color: #a85253;"><strong>Parlons ... | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1428 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
#La clé pour chaque ligne est-elle uniques? ou autrement dit, y a-t-il des doublons?
df_web_filtrer.duplicated().any()
True
#Les lignes sans code article semble être toutes non renseignés
#Pour s'en assurer réaliser les étapes suivantes:
#1 - Créer un dataframe avec uniquement les lignes sans code article
df_nan = df_web.loc[df_web['sku'].isna()]
df_nan.head(len(df_nan))
#2 - utiliser la fonction df.info() sur ce nouveau dataframe pour observer le nombre de valeur reseigner dans chacune des colonnes
#3 - Que constatez-vous?
# il y a 2 articles, 2 vins de 2 années différentes
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1428 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1429 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1430 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1431 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1432 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1433 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1434 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1435 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1436 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1437 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1438 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1439 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1440 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1441 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1442 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1443 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1444 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1445 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1446 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1447 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1448 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1449 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1450 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1451 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1452 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1453 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1454 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1455 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1456 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1457 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1458 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1459 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1460 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1461 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1462 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1463 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1464 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1465 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1466 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1467 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1468 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1469 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1470 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1471 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1472 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1473 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1474 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1475 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1476 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1477 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1478 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1479 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1480 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1481 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1482 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1483 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1484 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1485 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1486 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1487 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1488 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1489 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1490 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1491 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1492 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1493 | NaN | 0 | 0 | 0 | 0.0 | -56.0 | taxable | 2.0 | 2018-08-08 11:23:43 | 2018-08-08 09:23:43 | Vin | Pierre Jean Villa Condrieu Jardin Suspendu 2018 | <span id="u1194-83">Le nez séduit par ses parf... | publish | closed | closed | pierre-jean-villa-condrieu-suspendu-2018 | 2019-11-02 13:24:01 | 2019-11-02 12:24:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1494 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1495 | NaN | 0 | 0 | 0 | 0.0 | -17.0 | taxable | 2.0 | 2018-07-31 12:07:23 | 2018-07-31 10:07:23 | Vin | Pierre Jean Villa Côte Rôtie Fongeant 2017 | Fongeant 2017 explose sur un fruit brillant, p... | publish | closed | closed | pierre-jean-villa-cote-rotie-fongeant-2017 | 2019-11-02 13:24:15 | 2019-11-02 12:24:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1496 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1497 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1498 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1499 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1500 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1501 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1502 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1503 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1504 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1505 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1506 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1507 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1508 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1509 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1510 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1511 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1512 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
df_nan.info()
<class 'pandas.core.frame.DataFrame'> Index: 85 entries, 1428 to 1512 Data columns (total 25 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 sku 0 non-null object 1 virtual 85 non-null int64 2 downloadable 85 non-null int64 3 rating_count 85 non-null int64 4 average_rating 2 non-null float64 5 total_sales 2 non-null float64 6 tax_status 2 non-null object 7 post_author 2 non-null float64 8 post_date 2 non-null datetime64[ns] 9 post_date_gmt 2 non-null datetime64[ns] 10 product_type 2 non-null object 11 post_title 2 non-null object 12 post_excerpt 2 non-null object 13 post_status 2 non-null object 14 comment_status 2 non-null object 15 ping_status 2 non-null object 16 post_name 2 non-null object 17 post_modified 2 non-null datetime64[ns] 18 post_modified_gmt 2 non-null datetime64[ns] 19 post_parent 2 non-null float64 20 guid 2 non-null object 21 menu_order 2 non-null float64 22 post_type 2 non-null object 23 post_mime_type 0 non-null object 24 comment_count 2 non-null float64 dtypes: datetime64[ns](4), float64(6), int64(3), object(12) memory usage: 17.3+ KB
#Création d'un dataset sans erreur
d = {}
for i in range(len(df_web)):
sku = df_web['sku'].iloc[i]
total_sales = df_web['total_sales'].iloc[i]
if sku in d:
d[sku] = max(d[sku], total_sales)
else:
d[sku] = total_sales
df_web['total_sales'] = df_web['sku'].map(d)
df_web.head(len(df_web))
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | NaN | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 2 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 3 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | NaN | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 4 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | NaN | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 5 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 6 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 7 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | NaN | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 8 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | NaN | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 9 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 10 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 11 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 12 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 13 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 14 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 15 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 16 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 17 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 18 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 19 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | NaN | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 20 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 21 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 22 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 23 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 24 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 25 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 26 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | NaN | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 27 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 28 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 29 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 30 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | NaN | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 31 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 32 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | NaN | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 33 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 34 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | NaN | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 35 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 36 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 37 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 38 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 39 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 40 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 41 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 42 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | NaN | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 43 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 44 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 45 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | NaN | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 46 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 47 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | NaN | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 48 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | NaN | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 49 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 50 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | NaN | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 51 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 52 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | NaN | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 53 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 54 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 55 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 56 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 57 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 58 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | NaN | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 59 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 60 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | NaN | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 61 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 62 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 63 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 64 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 65 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | NaN | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 66 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 67 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 68 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | NaN | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 69 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 70 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 71 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 72 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | NaN | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 73 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 74 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 75 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 76 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | NaN | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 77 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 78 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 79 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 80 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 81 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 82 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 83 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | NaN | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 84 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 85 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 86 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 87 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | NaN | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 88 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 89 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 90 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 91 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 92 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 93 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | NaN | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 94 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 95 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 96 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 97 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | NaN | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 98 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 99 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 100 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | NaN | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 101 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 102 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 103 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 104 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | NaN | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 105 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 106 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 107 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 108 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 109 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 110 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | NaN | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 111 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 112 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 113 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 114 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 115 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | NaN | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 116 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 117 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 118 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 119 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 120 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 121 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 122 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | NaN | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 123 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 124 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 125 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 126 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | NaN | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 127 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 128 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | NaN | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 129 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 130 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 131 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 132 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 133 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | NaN | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 134 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 135 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 136 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 137 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | NaN | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 138 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 139 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 140 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | NaN | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 141 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 142 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | NaN | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 143 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 144 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 145 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 146 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 147 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | NaN | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 148 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 149 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | NaN | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 150 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | NaN | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 151 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 152 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | NaN | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 153 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 154 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 155 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 156 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | NaN | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 157 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 158 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 159 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 160 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 161 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 162 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 163 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 164 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 165 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 166 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 167 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 168 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | NaN | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 169 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 170 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 171 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 172 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 173 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 174 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 175 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 176 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 177 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | NaN | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 178 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 179 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 180 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | NaN | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 181 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 182 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 183 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | NaN | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 184 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 185 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | NaN | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 186 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 187 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | NaN | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 188 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 189 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | NaN | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 190 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | NaN | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 191 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 192 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 193 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 194 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 195 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 196 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | NaN | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 197 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 198 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 199 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 200 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 201 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | NaN | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 202 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | NaN | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 203 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 204 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 205 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 206 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | NaN | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 207 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 208 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | NaN | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 209 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 210 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | NaN | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 211 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 212 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 213 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 214 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | NaN | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 215 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 216 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 217 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 218 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | NaN | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 219 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 220 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | NaN | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 221 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 222 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 223 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 224 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 225 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 226 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 227 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | NaN | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 228 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 229 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | NaN | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 230 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 231 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | NaN | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 232 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 233 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 234 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 235 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 236 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 237 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 238 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 239 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 240 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 241 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 242 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 243 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 244 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 245 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 246 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | NaN | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 247 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 248 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | NaN | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 249 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 250 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | NaN | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 251 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 252 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 253 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | NaN | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 254 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 255 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | NaN | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 256 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 257 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 258 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | NaN | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 259 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 260 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | NaN | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 261 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 262 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | NaN | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 263 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 264 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 265 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | NaN | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 266 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 267 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 268 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 269 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 270 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 271 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | NaN | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 272 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 273 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | NaN | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 274 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 275 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 276 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 277 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | NaN | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 278 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 279 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 280 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | NaN | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 281 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 282 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | NaN | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 283 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 284 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 285 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 286 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 287 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | NaN | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 288 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 289 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | NaN | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 290 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | NaN | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 291 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 292 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | NaN | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 293 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 294 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | NaN | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 295 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 296 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 297 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 298 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 299 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 300 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 301 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 302 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 303 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 304 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 305 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 306 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | NaN | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 307 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 308 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 309 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 310 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 311 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 312 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 313 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 314 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | NaN | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 315 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 316 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 317 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 318 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 319 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | NaN | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 320 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 321 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 322 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 323 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 324 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 325 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | NaN | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 326 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | NaN | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 327 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 328 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | NaN | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 329 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 330 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | NaN | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 331 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 332 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 333 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 334 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 335 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | NaN | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 336 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 337 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | NaN | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 338 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | NaN | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 339 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 340 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 341 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 342 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | NaN | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 343 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 344 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | NaN | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 345 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 346 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | NaN | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 347 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 348 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | NaN | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 349 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 350 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | NaN | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 351 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 352 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 353 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | NaN | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 354 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 355 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 356 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 357 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 358 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 359 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 360 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 361 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | NaN | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 362 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 363 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 364 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | NaN | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 365 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 366 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 367 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | NaN | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 368 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 369 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | NaN | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 370 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 371 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | NaN | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 372 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | NaN | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 373 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 374 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 375 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 376 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 377 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | NaN | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 378 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 379 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | NaN | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 380 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 381 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | NaN | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 382 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 383 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | NaN | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 384 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 385 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 386 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | NaN | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | NaN | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 387 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 388 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 389 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 390 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 391 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 392 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 393 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 394 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | NaN | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 395 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 396 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | NaN | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 397 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 398 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 399 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | NaN | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 400 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 401 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 402 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 403 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | NaN | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 404 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | NaN | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 405 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 406 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 407 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | NaN | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 408 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 409 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | NaN | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 410 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 411 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 412 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 413 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 414 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 415 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 416 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 417 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 418 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 419 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 420 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 421 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 422 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 423 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | NaN | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 424 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 425 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 426 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 427 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | NaN | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 428 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | NaN | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 429 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 430 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | NaN | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 431 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 432 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 433 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | NaN | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 434 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 435 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 436 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 437 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 438 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | NaN | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 439 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 440 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | NaN | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 441 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 442 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | NaN | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 443 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 444 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 445 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | NaN | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 446 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 447 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 448 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 449 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | NaN | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 450 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 451 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 452 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 453 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | NaN | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 454 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | NaN | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 455 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 456 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 457 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | NaN | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 458 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | NaN | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 459 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 460 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 461 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | NaN | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 462 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 463 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | NaN | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 464 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 465 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 466 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 467 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 468 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 469 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 470 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | NaN | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 471 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 472 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 473 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | NaN | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 474 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 475 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | NaN | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 476 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | NaN | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 477 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 478 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 479 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | NaN | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | NaN | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 480 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 481 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 482 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | NaN | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 483 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 484 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | NaN | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 485 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 486 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 487 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | NaN | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 488 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | NaN | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 489 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 490 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 491 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | NaN | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 492 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 493 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | NaN | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 494 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 495 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 496 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 497 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 498 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 499 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 500 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 501 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | NaN | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 502 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | NaN | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 503 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 504 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | NaN | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 505 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 506 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 507 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | NaN | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 508 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | NaN | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 509 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 510 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 511 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 512 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | NaN | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 513 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 514 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 515 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | NaN | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 516 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | NaN | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 517 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 518 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 519 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | NaN | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 520 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 521 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 522 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | NaN | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 523 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 524 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 525 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 526 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 527 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 528 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 529 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | NaN | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 530 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | NaN | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 531 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 532 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 533 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 534 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 535 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 536 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 537 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 538 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 539 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 540 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 541 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 542 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 543 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | NaN | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 544 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 545 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | NaN | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 546 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | NaN | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 547 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 548 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | NaN | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 549 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 550 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 551 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 552 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 553 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | NaN | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 554 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | NaN | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 555 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 556 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 557 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | NaN | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 558 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | NaN | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 559 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 560 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 561 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | NaN | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 562 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 563 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | NaN | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 564 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 565 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | NaN | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 566 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 567 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | NaN | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 568 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 569 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | NaN | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 570 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 571 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 572 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 573 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 574 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 575 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 576 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 577 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | NaN | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 578 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 579 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 580 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | NaN | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 581 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 582 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 583 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | NaN | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 584 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 585 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 586 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 587 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | NaN | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 588 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 589 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 590 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | NaN | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 591 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 592 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 593 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 594 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | NaN | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 595 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 596 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | NaN | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 597 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 598 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 599 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | NaN | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 600 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | NaN | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 601 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 602 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 603 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 604 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | NaN | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 605 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 606 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 607 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 608 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 609 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 610 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 611 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 612 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 613 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 614 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | NaN | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 615 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 616 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | NaN | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 617 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 618 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 619 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | NaN | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 620 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 621 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | NaN | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 622 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 623 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | NaN | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 624 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 625 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 626 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 627 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | NaN | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 628 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 629 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | NaN | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 630 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | NaN | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 631 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 632 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | NaN | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 633 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 634 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 635 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 636 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 637 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 638 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 639 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 640 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 641 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 642 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 643 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 644 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 645 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 646 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 647 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 648 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 649 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 650 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 651 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 652 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | NaN | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 653 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 654 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 655 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 656 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 657 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | NaN | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 658 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 659 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 660 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | NaN | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 661 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 662 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 663 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 664 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 665 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 666 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 667 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 668 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 669 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | NaN | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 670 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | NaN | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 671 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 672 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 673 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 674 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 675 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 676 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 677 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 678 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 679 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 680 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 681 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 682 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 683 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | NaN | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 684 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | NaN | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 685 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 686 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 687 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 688 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 689 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 690 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 691 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 692 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 693 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 694 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | NaN | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 695 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 696 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 697 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 698 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | NaN | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 699 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 700 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | NaN | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 701 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 702 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 703 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | NaN | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 704 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 705 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 706 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 707 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | NaN | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 708 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | NaN | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 709 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 710 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | NaN | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 711 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 712 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | NaN | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 713 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 714 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | NaN | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 715 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 716 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | NaN | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 717 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 718 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | NaN | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 719 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 720 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 721 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | NaN | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 722 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 723 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | NaN | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 724 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | NaN | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 725 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 726 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 727 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | NaN | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | NaN | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 728 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 729 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 730 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 731 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | NaN | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 732 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 733 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | NaN | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 734 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 735 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 736 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 737 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 738 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 739 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 740 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 741 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | NaN | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 742 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 743 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | NaN | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 744 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 745 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 746 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 747 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 748 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 749 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | NaN | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 750 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 751 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 752 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 753 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 754 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 755 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | NaN | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 756 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 757 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 758 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 759 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | NaN | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 760 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 761 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | NaN | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 762 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 763 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 764 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 765 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 766 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 767 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 768 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 769 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 770 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 771 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 772 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 773 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 774 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 775 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 776 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | NaN | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 777 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 778 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 779 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | NaN | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 780 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | NaN | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 781 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 782 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 783 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 784 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 785 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 786 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 787 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 788 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 789 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | NaN | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 790 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 791 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 792 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | NaN | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 793 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 794 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 795 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 796 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 797 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 798 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 799 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 800 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 801 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 802 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 803 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | NaN | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 804 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 805 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | NaN | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 806 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 807 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | NaN | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 808 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 809 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 810 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 811 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 812 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | NaN | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 813 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 814 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | NaN | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 815 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 816 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 817 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | NaN | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 818 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 819 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 820 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | NaN | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 821 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 822 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 823 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | NaN | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 824 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 825 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | NaN | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 826 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 827 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 828 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 829 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 830 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | NaN | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 831 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 832 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 833 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 834 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 835 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 836 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | NaN | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 837 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 838 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 839 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 840 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 841 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | NaN | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 842 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 843 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 844 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 845 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | NaN | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 846 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | NaN | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 847 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 848 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 849 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | NaN | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 850 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 851 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 852 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 853 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 854 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 855 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 856 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 857 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 858 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | NaN | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 859 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 860 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 861 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 862 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 863 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 864 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 865 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 866 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 867 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 868 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 869 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | NaN | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 870 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 871 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 872 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | NaN | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 873 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 874 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 875 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | NaN | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 876 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 877 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 878 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 879 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 880 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | NaN | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 881 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 882 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 883 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 884 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 885 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | NaN | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 886 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | NaN | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 887 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 888 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | NaN | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 889 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 890 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | NaN | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 891 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 892 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 893 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 894 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | NaN | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 895 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 896 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | NaN | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 897 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 898 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 899 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | NaN | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 900 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | NaN | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 901 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 902 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | NaN | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 903 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 904 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 905 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 906 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 907 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 908 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 909 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 910 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 911 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | NaN | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 912 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | NaN | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 913 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 914 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 915 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 916 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 917 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 918 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 919 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | NaN | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 920 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | NaN | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 921 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 922 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 923 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 924 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 925 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 926 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | NaN | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 927 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 928 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 929 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 930 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 931 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | NaN | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 932 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 933 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | NaN | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 934 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | NaN | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 935 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 936 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 937 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 938 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 939 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | NaN | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 940 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | NaN | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 941 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 942 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 943 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 944 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 945 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 946 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 947 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 948 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 949 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | NaN | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 950 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | NaN | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 951 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 952 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 953 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | NaN | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 954 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 955 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | NaN | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 956 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | NaN | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | NaN | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 957 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 958 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 959 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 960 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 961 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 962 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 963 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 964 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | NaN | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 965 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 966 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 967 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | NaN | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 968 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 969 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 970 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | NaN | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 971 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 972 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 973 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 974 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 975 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | NaN | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 976 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 977 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 978 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 979 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 980 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 981 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | NaN | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 982 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 983 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | NaN | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 984 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 985 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | NaN | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 986 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 987 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 988 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 989 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 990 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 991 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | NaN | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 992 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | NaN | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 993 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 994 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 995 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 996 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 997 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 998 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 999 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1000 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1001 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1002 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1003 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1004 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1005 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1006 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1007 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | NaN | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1008 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1009 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1010 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1011 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | NaN | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1012 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1013 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1014 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | NaN | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1015 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1016 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1017 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1018 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1019 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1020 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1021 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | NaN | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1022 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1023 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | NaN | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1024 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1025 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | NaN | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1026 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1027 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1028 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1029 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1030 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1031 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1032 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1033 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1034 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1035 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1036 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1037 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1038 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | NaN | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1039 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1040 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | NaN | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1041 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1042 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1043 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1044 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | NaN | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1045 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1046 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1047 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1048 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1049 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1050 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1051 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1052 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | NaN | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1053 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1054 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1055 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | NaN | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1056 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | NaN | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1057 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1058 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1059 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | NaN | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1060 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1061 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | NaN | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1062 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1063 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1064 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1065 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1066 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | NaN | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1067 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1068 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1069 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | NaN | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1070 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | NaN | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1071 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1072 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1073 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1074 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | NaN | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1075 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1076 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1077 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | NaN | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1078 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1079 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1080 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1081 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1082 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1083 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1084 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | NaN | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1085 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1086 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1087 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1088 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1089 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1090 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | NaN | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1091 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1092 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1093 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1094 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1095 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1096 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1097 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1098 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | NaN | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1099 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1100 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1101 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | NaN | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1102 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1103 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | NaN | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1104 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1105 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1106 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1107 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1108 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1109 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1110 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1111 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1112 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | NaN | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1113 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1114 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1115 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1116 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | NaN | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1117 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1118 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1119 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1120 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1121 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1122 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1123 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | NaN | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1124 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1125 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1126 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | NaN | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1127 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1128 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1129 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1130 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1131 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1132 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1133 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1134 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1135 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1136 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1137 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | NaN | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1138 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1139 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | NaN | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1140 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1141 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1142 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1143 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1144 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1145 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | NaN | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1146 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1147 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | NaN | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1148 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1149 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1150 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1151 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1152 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1153 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1154 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1155 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | NaN | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1156 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1157 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1158 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1159 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | NaN | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1160 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1161 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1162 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1163 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1164 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | NaN | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1165 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1166 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1167 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1168 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1169 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1170 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1171 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1172 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1173 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1174 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1175 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1176 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1177 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1178 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1179 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1180 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1181 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | NaN | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1182 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | NaN | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1183 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1184 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1185 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1186 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1187 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1188 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1189 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | NaN | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1190 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1191 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1192 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1193 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1194 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1195 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1196 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1197 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | NaN | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1198 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1199 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | NaN | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1200 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1201 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | NaN | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1202 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | NaN | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1203 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1204 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1205 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | NaN | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1206 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1207 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1208 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | NaN | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1209 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1210 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1211 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1212 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | NaN | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1213 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1214 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | NaN | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1215 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1216 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | NaN | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1217 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1218 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1219 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | NaN | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1220 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1221 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | NaN | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1222 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | NaN | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1223 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1224 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1225 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | NaN | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1226 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1227 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1228 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | NaN | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1229 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1230 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1231 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1232 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1233 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | NaN | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1234 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1235 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | NaN | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1236 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | NaN | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1237 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1238 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1239 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | NaN | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1240 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1241 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1242 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1243 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1244 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1245 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1246 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1247 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1248 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1249 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1250 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1251 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1252 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1253 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | NaN | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1254 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1255 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1256 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1257 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1258 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | NaN | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1259 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1260 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1261 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1262 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1263 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | NaN | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1264 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1265 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1266 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1267 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | NaN | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1268 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | NaN | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1269 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1270 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1271 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | NaN | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1272 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1273 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | NaN | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1274 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1275 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1276 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1277 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1278 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1279 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1280 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1281 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1282 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | NaN | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1283 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1284 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | NaN | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1285 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1286 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | NaN | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1287 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1288 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | NaN | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1289 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1290 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1291 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | NaN | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1292 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1293 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1294 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1295 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1296 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1297 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1298 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1299 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1300 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1301 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1302 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1303 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | NaN | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1304 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1305 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1306 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | NaN | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1307 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1308 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1309 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1310 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1311 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1312 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1313 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1314 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1315 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1316 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1317 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1318 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1319 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1320 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1321 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1322 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1323 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | NaN | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1324 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1325 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1326 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1327 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1328 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | NaN | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1329 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1330 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | NaN | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1331 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1332 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1333 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | NaN | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1334 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1335 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | NaN | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1336 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1337 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1338 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1339 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1340 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1341 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1342 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1343 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | NaN | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1344 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1345 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1346 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1347 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1348 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | NaN | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1349 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1350 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1351 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | NaN | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1352 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1353 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1354 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1355 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | NaN | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1356 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1357 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | NaN | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1358 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1359 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | NaN | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1360 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1361 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1362 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1363 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1364 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1365 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1366 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | NaN | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1367 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1368 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1369 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | NaN | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1370 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1371 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1372 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1373 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1374 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1375 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | NaN | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1376 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1377 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | NaN | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1378 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | NaN | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1379 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1380 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1381 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1382 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1383 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1384 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1385 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1386 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1387 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1388 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1389 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1390 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1391 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1392 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | NaN | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1393 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1394 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1395 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1396 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1397 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | NaN | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1398 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | NaN | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1399 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1400 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | NaN | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1401 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1402 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1403 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | NaN | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1404 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1405 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1406 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1407 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1408 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1409 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | NaN | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1410 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1411 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | NaN | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1412 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | NaN | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1413 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1414 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | NaN | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1415 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1416 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1417 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1418 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1419 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | NaN | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1420 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | NaN | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1421 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1422 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1423 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | NaN | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1424 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1425 | 13127-1 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-06-09 15:42:04 | 2020-06-09 13:42:04 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007-2 | 2020-07-20 17:09:06 | 2020-07-20 15:09:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1426 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | Autre | Bon cadeau de 25€ | NaN | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1427 | bon-cadeau-25-euros | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 1.0 | 2018-06-01 13:53:46 | 2018-06-01 11:53:46 | NaN | Bon cadeau de 25€ | <span style="color: #a85253;"><strong>Parlons ... | publish | closed | closed | bon-cadeau-de-25-euros | 2018-06-01 14:13:57 | 2018-06-01 12:13:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1428 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1429 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1430 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1431 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1432 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1433 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1434 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1435 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1436 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1437 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1438 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1439 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1440 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1441 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1442 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1443 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1444 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1445 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1446 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1447 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1448 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1449 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1450 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1451 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1452 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1453 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1454 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1455 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1456 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1457 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1458 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1459 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1460 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1461 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1462 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1463 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1464 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1465 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1466 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1467 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1468 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1469 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1470 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1471 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1472 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1473 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1474 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1475 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1476 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1477 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1478 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1479 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1480 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1481 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1482 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1483 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1484 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1485 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1486 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1487 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1488 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1489 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1490 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1491 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1492 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1493 | NaN | 0 | 0 | 0 | 0.0 | NaN | taxable | 2.0 | 2018-08-08 11:23:43 | 2018-08-08 09:23:43 | Vin | Pierre Jean Villa Condrieu Jardin Suspendu 2018 | <span id="u1194-83">Le nez séduit par ses parf... | publish | closed | closed | pierre-jean-villa-condrieu-suspendu-2018 | 2019-11-02 13:24:01 | 2019-11-02 12:24:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1494 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1495 | NaN | 0 | 0 | 0 | 0.0 | NaN | taxable | 2.0 | 2018-07-31 12:07:23 | 2018-07-31 10:07:23 | Vin | Pierre Jean Villa Côte Rôtie Fongeant 2017 | Fongeant 2017 explose sur un fruit brillant, p... | publish | closed | closed | pierre-jean-villa-cote-rotie-fongeant-2017 | 2019-11-02 13:24:15 | 2019-11-02 12:24:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1496 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1497 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1498 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1499 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1500 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1501 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1502 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1503 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1504 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1505 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1506 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1507 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1508 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1509 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1510 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1511 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
| 1512 | NaN | 0 | 0 | 0 | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaT | NaT | NaN | NaN | NaN | NaN | NaN | NaN |
filter_int = df_web['sku'].loc[df_web['sku'].isin(l)]
df_web = df_web.loc[df_web['sku'].isin(filter_int)]
df_web.head(len(df_web))
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | NaN | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 2 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 3 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | NaN | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 4 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | NaN | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 5 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 6 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 7 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | NaN | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 8 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | NaN | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 9 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 10 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 11 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 12 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 13 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 14 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 15 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 16 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 17 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 18 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 19 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | NaN | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 20 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 21 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 22 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 23 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 24 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 25 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 26 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | NaN | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 27 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 28 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 29 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 30 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | NaN | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 31 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 32 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | NaN | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 33 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 34 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | NaN | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 35 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 36 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 37 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 38 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 39 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | NaN | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 40 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 41 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 42 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | NaN | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 43 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 44 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 45 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | NaN | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 46 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 47 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | NaN | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 48 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | NaN | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 49 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 50 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | NaN | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 51 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 52 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | NaN | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 53 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 54 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 55 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 56 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 57 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 58 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | NaN | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 59 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 60 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | NaN | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 61 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 62 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 63 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | NaN | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 64 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 65 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | NaN | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 66 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 67 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 68 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | NaN | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 69 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 70 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 71 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | NaN | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 72 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | NaN | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 73 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 74 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 75 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 76 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | NaN | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 77 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 78 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 79 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 80 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 81 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 82 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 83 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | NaN | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 84 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 85 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 86 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 87 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | NaN | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 88 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 89 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 90 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 91 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 92 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 93 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | NaN | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 94 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 95 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 96 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 97 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | NaN | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 98 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 99 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 100 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | NaN | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 101 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 102 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 103 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 104 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | NaN | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 105 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 106 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 107 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 108 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 109 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 110 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | NaN | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 111 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 112 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 113 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 114 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 115 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | NaN | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 116 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 117 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 118 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 119 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 120 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 121 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 122 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | NaN | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 123 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 124 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 125 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 126 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | NaN | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 127 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 128 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | NaN | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 129 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 130 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 131 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 132 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 133 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | NaN | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 134 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 135 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 136 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 137 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | NaN | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 138 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 139 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 140 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | NaN | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 141 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 142 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | NaN | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 143 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 144 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 145 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 146 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 147 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | NaN | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 148 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 149 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | NaN | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 150 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | NaN | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 151 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 152 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | NaN | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 153 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 154 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 155 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 156 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | NaN | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 157 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 158 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 159 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 160 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 161 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 162 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 163 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | NaN | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 164 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 165 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | NaN | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 166 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | NaN | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 167 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 168 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | NaN | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 169 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 170 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 171 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 172 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 173 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 174 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 175 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 176 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 177 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | NaN | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 178 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 179 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 180 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | NaN | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 181 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 182 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 183 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | NaN | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 184 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 185 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | NaN | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 186 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 187 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | NaN | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 188 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 189 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | NaN | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 190 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | NaN | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 191 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 192 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 193 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 194 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | NaN | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 195 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 196 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | NaN | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 197 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 198 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 199 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 200 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 201 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | NaN | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 202 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | NaN | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 203 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 204 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 205 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 206 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | NaN | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 207 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 208 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | NaN | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 209 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 210 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | NaN | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 211 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 212 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 213 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 214 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | NaN | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 215 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 216 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 217 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | NaN | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 218 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | NaN | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 219 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 220 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | NaN | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 221 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 222 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 223 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 224 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 225 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 226 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 227 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | NaN | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 228 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 229 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | NaN | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 230 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 231 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | NaN | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 232 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 233 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 234 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 235 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 236 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 237 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 238 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 239 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 240 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 241 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 242 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 243 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 244 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 245 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 246 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | NaN | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 247 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 248 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | NaN | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 249 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 250 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | NaN | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 251 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 252 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 253 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | NaN | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 254 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 255 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | NaN | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 256 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | NaN | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 257 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 258 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | NaN | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 259 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 260 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | NaN | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 261 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 262 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | NaN | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 263 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 264 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 265 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | NaN | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 266 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 267 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 268 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 269 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 270 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 271 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | NaN | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 272 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 273 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | NaN | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 274 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 275 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 276 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 277 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | NaN | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 278 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 279 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | NaN | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 280 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | NaN | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 281 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 282 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | NaN | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 283 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 284 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 285 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 286 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 287 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | NaN | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 288 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 289 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | NaN | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 290 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | NaN | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 291 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 292 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | NaN | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 293 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 294 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | NaN | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 295 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 296 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 297 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 298 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 299 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 300 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 301 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 302 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 303 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | NaN | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 304 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 305 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 306 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | NaN | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 307 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 308 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 309 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 310 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 311 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 312 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 313 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 314 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | NaN | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 315 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 316 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 317 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | NaN | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 318 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 319 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | NaN | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 320 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 321 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 322 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | NaN | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 323 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 324 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 325 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | NaN | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 326 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | NaN | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 327 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 328 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | NaN | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 329 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 330 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | NaN | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 331 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 332 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 333 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 334 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 335 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | NaN | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 336 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 337 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | NaN | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 338 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | NaN | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 339 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 340 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 341 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 342 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | NaN | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 343 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 344 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | NaN | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 345 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 346 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | NaN | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 347 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 348 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | NaN | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 349 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 350 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | NaN | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 351 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 352 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 353 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | NaN | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 354 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | NaN | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 355 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 356 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 357 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 358 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 359 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | NaN | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 360 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 361 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | NaN | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 362 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 363 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 364 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | NaN | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 365 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 366 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 367 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | NaN | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 368 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 369 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | NaN | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 370 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 371 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | NaN | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 372 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | NaN | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 373 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 374 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 375 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | NaN | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 376 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 377 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | NaN | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 378 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 379 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | NaN | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 380 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 381 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | NaN | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 382 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 383 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | NaN | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 384 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 385 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 386 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | NaN | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | NaN | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 387 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 388 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 389 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 390 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 391 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 392 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 393 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 394 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | NaN | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 395 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 396 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | NaN | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 397 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 398 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 399 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | NaN | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 400 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 401 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 402 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 403 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | NaN | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 404 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | NaN | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 405 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 406 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 407 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | NaN | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 408 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 409 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | NaN | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 410 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 411 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 412 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 413 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 414 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 415 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 416 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 417 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 418 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 419 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 420 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 421 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 422 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 423 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | NaN | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 424 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 425 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 426 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 427 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | NaN | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 428 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | NaN | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 429 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 430 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | NaN | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 431 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 432 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 433 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | NaN | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 434 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 435 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | NaN | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 436 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 437 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 438 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | NaN | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 439 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 440 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | NaN | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 441 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 442 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | NaN | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 443 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 444 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 445 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | NaN | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 446 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 447 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 448 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 449 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | NaN | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 450 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | NaN | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 451 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 452 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 453 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | NaN | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 454 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | NaN | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 455 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 456 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 457 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | NaN | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 458 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | NaN | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 459 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 460 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 461 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | NaN | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 462 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 463 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | NaN | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 464 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 465 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 466 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 467 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 468 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 469 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | NaN | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 470 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | NaN | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 471 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 472 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 473 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | NaN | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 474 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 475 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | NaN | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 476 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | NaN | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 477 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 478 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 479 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | NaN | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | NaN | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 480 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 481 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 482 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | NaN | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 483 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 484 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | NaN | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 485 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 486 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 487 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | NaN | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 488 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | NaN | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 489 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 490 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 491 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | NaN | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 492 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 493 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | NaN | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 494 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 495 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 496 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 497 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 498 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 499 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 500 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 501 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | NaN | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 502 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | NaN | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 503 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 504 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | NaN | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 505 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 506 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 507 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | NaN | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 508 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | NaN | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 509 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 510 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 511 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 512 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | NaN | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 513 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 514 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 515 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | NaN | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 516 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | NaN | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 517 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 518 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 519 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | NaN | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 520 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 521 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 522 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | NaN | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 523 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 524 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 525 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 526 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 527 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 528 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 529 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | NaN | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 530 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | NaN | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 531 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 532 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 533 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 534 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 535 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 536 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 537 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 538 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 539 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 540 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | NaN | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 541 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 542 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 543 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | NaN | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 544 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 545 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | NaN | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 546 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | NaN | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 547 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 548 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | NaN | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 549 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 550 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 551 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 552 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 553 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | NaN | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 554 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | NaN | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 555 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 556 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 557 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | NaN | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 558 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | NaN | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 559 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 560 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 561 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | NaN | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 562 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 563 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | NaN | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 564 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 565 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | NaN | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 566 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 567 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | NaN | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 568 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 569 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | NaN | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 570 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 571 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 572 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 573 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 574 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 575 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 576 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 577 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | NaN | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 578 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 579 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 580 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | NaN | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 581 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 582 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 583 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | NaN | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 584 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 585 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 586 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 587 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | NaN | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 588 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 589 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 590 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | NaN | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 591 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 592 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 593 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 594 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | NaN | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 595 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 596 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | NaN | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 597 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 598 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 599 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | NaN | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 600 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | NaN | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 601 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 602 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 603 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 604 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | NaN | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 605 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 606 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 607 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 608 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 609 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 610 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 611 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | NaN | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 612 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 613 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | NaN | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 614 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | NaN | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 615 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 616 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | NaN | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 617 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 618 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 619 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | NaN | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 620 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 621 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | NaN | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 622 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 623 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | NaN | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 624 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 625 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | NaN | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 626 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 627 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | NaN | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 628 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 629 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | NaN | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 630 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | NaN | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 631 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 632 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | NaN | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 633 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 634 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 635 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | NaN | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 636 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 637 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 638 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | NaN | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 639 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 640 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 641 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 642 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 643 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 644 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 645 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | NaN | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 646 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 647 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 648 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 649 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 650 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 651 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 652 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | NaN | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 653 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 654 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 655 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | NaN | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 656 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 657 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | NaN | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 658 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 659 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 660 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | NaN | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 661 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 662 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 663 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | NaN | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 664 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 665 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 666 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 667 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | NaN | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 668 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 669 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | NaN | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 670 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | NaN | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | NaN | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 671 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 672 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 673 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 674 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 675 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | NaN | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 676 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 677 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 678 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 679 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 680 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | NaN | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 681 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 682 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 683 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | NaN | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 684 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | NaN | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 685 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 686 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 687 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 688 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 689 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 690 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 691 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 692 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | NaN | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 693 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 694 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | NaN | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 695 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 696 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 697 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 698 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | NaN | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 699 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 700 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | NaN | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 701 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 702 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 703 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | NaN | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 704 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 705 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 706 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 707 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | NaN | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 708 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | NaN | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 709 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 710 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | NaN | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 711 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 712 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | NaN | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 713 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 714 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | NaN | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 715 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 716 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | NaN | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 717 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 718 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | NaN | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 719 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 720 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 721 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | NaN | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 722 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 723 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | NaN | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 724 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | NaN | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 725 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 726 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 727 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | NaN | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | NaN | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 728 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 729 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 730 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 731 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | NaN | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 732 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 733 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | NaN | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 734 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | NaN | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 735 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 736 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 737 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 738 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 739 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 740 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 741 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | NaN | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 742 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 743 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | NaN | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 744 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 745 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 746 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 747 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 748 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 749 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | NaN | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 750 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 751 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 752 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 753 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 754 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 755 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | NaN | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 756 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 757 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 758 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 759 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | NaN | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 760 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 761 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | NaN | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 762 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 763 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 764 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 765 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 766 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 767 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 768 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 769 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 770 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 771 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | NaN | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 772 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 773 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 774 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 775 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | NaN | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 776 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | NaN | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 777 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 778 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 779 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | NaN | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 780 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | NaN | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 781 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 782 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 783 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 784 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 785 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 786 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | NaN | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 787 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 788 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 789 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | NaN | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 790 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 791 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 792 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | NaN | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 793 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 794 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | NaN | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 795 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 796 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 797 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 798 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 799 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 800 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | NaN | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 801 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 802 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 803 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | NaN | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 804 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 805 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | NaN | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 806 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 807 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | NaN | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 808 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 809 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 810 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 811 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 812 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | NaN | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 813 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 814 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | NaN | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 815 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 816 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 817 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | NaN | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 818 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 819 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 820 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | NaN | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 821 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 822 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 823 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | NaN | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 824 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 825 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | NaN | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 826 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 827 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 828 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 829 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 830 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | NaN | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 831 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 832 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | NaN | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 833 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 834 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 835 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | NaN | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 836 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | NaN | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 837 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 838 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 839 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 840 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 841 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | NaN | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 842 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 843 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 844 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 845 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | NaN | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 846 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | NaN | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 847 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 848 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 849 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | NaN | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 850 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 851 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 852 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 853 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | NaN | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 854 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 855 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 856 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 857 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 858 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | NaN | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 859 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 860 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 861 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 862 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 863 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | NaN | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 864 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 865 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 866 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 867 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 868 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 869 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | NaN | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 870 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 871 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | NaN | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 872 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | NaN | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 873 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 874 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 875 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | NaN | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 876 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 877 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 878 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 879 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | NaN | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 880 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | NaN | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 881 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 882 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 883 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | NaN | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 884 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 885 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | NaN | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 886 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | NaN | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 887 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 888 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | NaN | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 889 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 890 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | NaN | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 891 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 892 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 893 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | NaN | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 894 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | NaN | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 895 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 896 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | NaN | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 897 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 898 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 899 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | NaN | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | NaN | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 900 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | NaN | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 901 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 902 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | NaN | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 903 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 904 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 905 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 906 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 907 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 908 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | NaN | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 909 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 910 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 911 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | NaN | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 912 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | NaN | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 913 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 914 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 915 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 916 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 917 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | NaN | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 918 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 919 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | NaN | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 920 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | NaN | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 921 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 922 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | NaN | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 923 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 924 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 925 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | NaN | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 926 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | NaN | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 927 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 928 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | NaN | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 929 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 930 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 931 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | NaN | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 932 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 933 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | NaN | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 934 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | NaN | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 935 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 936 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 937 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 938 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 939 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | NaN | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 940 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | NaN | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 941 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 942 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 943 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 944 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 945 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 946 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | NaN | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 947 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 948 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 949 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | NaN | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 950 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | NaN | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 951 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 952 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 953 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | NaN | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 954 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 955 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | NaN | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 956 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | NaN | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | NaN | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 957 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 958 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 959 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | NaN | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 960 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 961 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 962 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 963 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 964 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | NaN | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 965 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 966 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 967 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | NaN | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 968 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | NaN | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 969 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 970 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | NaN | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 971 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 972 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 973 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 974 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 975 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | NaN | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 976 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 977 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 978 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 979 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 980 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 981 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | NaN | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 982 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 983 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | NaN | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 984 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 985 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | NaN | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 986 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 987 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 988 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 989 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | NaN | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 990 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 991 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | NaN | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 992 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | NaN | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 993 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 994 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 995 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 996 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | NaN | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 997 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 998 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 999 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1000 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1001 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1002 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1003 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1004 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1005 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | NaN | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1006 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1007 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | NaN | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1008 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | NaN | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1009 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1010 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1011 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | NaN | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1012 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1013 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1014 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | NaN | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1015 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1016 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | NaN | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1017 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1018 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1019 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1020 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1021 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | NaN | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1022 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1023 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | NaN | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1024 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1025 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | NaN | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1026 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1027 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | NaN | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1028 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1029 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | NaN | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1030 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | NaN | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1031 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1032 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1033 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1034 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1035 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1036 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1037 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1038 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | NaN | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1039 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1040 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | NaN | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1041 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1042 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1043 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1044 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | NaN | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1045 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1046 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1047 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1048 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1049 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1050 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1051 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | NaN | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1052 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | NaN | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1053 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1054 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1055 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | NaN | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1056 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | NaN | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1057 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1058 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1059 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | NaN | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1060 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1061 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | NaN | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1062 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | NaN | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1063 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1064 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1065 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | NaN | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1066 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | NaN | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1067 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1068 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1069 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | NaN | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1070 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | NaN | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1071 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1072 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1073 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1074 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | NaN | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1075 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1076 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1077 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | NaN | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1078 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1079 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1080 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1081 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1082 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | NaN | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1083 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1084 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | NaN | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1085 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1086 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1087 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1088 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1089 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1090 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | NaN | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1091 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1092 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1093 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1094 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1095 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | NaN | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1096 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | NaN | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1097 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1098 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | NaN | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1099 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1100 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1101 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | NaN | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1102 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1103 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | NaN | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1104 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1105 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1106 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1107 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | NaN | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1108 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1109 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1110 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | NaN | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1111 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1112 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | NaN | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1113 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1114 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1115 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1116 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | NaN | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1117 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1118 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | NaN | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1119 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1120 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | NaN | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1121 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1122 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1123 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | NaN | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1124 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | NaN | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1125 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1126 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | NaN | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1127 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1128 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1129 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1130 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1131 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1132 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1133 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1134 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | NaN | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1135 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1136 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1137 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | NaN | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1138 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1139 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | NaN | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1140 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1141 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1142 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1143 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1144 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1145 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | NaN | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1146 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1147 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | NaN | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1148 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1149 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1150 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1151 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | NaN | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1152 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1153 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | NaN | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1154 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1155 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | NaN | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1156 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1157 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | NaN | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1158 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1159 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | NaN | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1160 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1161 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1162 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1163 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1164 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | NaN | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1165 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1166 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1167 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1168 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1169 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1170 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1171 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | NaN | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1172 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1173 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1174 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | NaN | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1175 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1176 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1177 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1178 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | NaN | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1179 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1180 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1181 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | NaN | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1182 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | NaN | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1183 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1184 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1185 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1186 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | NaN | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1187 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1188 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1189 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | NaN | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1190 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1191 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1192 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1193 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | NaN | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1194 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1195 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1196 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1197 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | NaN | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1198 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1199 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | NaN | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1200 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1201 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | NaN | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1202 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | NaN | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1203 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1204 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1205 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | NaN | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1206 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1207 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | NaN | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1208 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | NaN | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1209 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1210 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | NaN | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1211 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1212 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | NaN | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1213 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1214 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | NaN | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1215 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1216 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | NaN | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1217 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1218 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1219 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | NaN | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1220 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1221 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | NaN | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1222 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | NaN | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1223 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1224 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1225 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | NaN | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1226 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1227 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1228 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | NaN | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1229 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1230 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1231 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1232 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1233 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | NaN | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1234 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1235 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | NaN | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | NaN | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1236 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | NaN | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1237 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1238 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1239 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | NaN | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1240 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | NaN | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1241 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1242 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1243 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | NaN | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1244 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1245 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | NaN | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1246 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1247 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1248 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1249 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | NaN | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1250 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | NaN | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1251 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1252 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1253 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | NaN | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1254 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1255 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1256 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | NaN | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1257 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1258 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | NaN | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1259 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1260 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1261 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | NaN | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1262 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1263 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | NaN | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1264 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1265 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | NaN | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1266 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1267 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | NaN | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1268 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | NaN | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1269 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1270 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1271 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | NaN | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1272 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1273 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | NaN | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1274 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1275 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1276 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | NaN | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1277 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1278 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1279 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1280 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | NaN | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1281 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1282 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | NaN | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1283 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1284 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | NaN | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1285 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1286 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | NaN | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1287 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1288 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | NaN | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1289 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1290 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1291 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | NaN | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1292 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1293 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1294 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1295 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1296 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | NaN | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1297 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1298 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1299 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1300 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1301 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1302 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1303 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | NaN | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1304 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | NaN | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1305 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1306 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | NaN | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1307 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1308 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1309 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1310 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1311 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1312 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1313 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1314 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1315 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | NaN | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1316 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1317 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1318 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | NaN | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1319 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1320 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | NaN | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1321 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1322 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1323 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | NaN | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1324 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1325 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | NaN | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1326 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1327 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1328 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | NaN | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1329 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1330 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | NaN | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1331 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1332 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1333 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | NaN | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1334 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1335 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | NaN | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1336 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1337 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1338 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1339 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | NaN | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1340 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1341 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1342 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1343 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | NaN | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1344 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1345 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1346 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | NaN | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | NaN | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1347 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1348 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | NaN | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | NaN | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1349 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1350 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1351 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | NaN | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1352 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | NaN | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1353 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1354 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1355 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | NaN | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1356 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1357 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | NaN | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1358 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1359 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | NaN | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1360 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | NaN | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1361 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1362 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1363 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | NaN | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1364 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1365 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | NaN | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1366 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | NaN | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | NaN | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1367 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1368 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1369 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | NaN | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1370 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | NaN | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1371 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1372 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1373 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1374 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1375 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | NaN | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | NaN | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1376 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1377 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | NaN | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1378 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | NaN | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1379 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1380 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1381 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | NaN | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1382 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1383 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | NaN | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | NaN | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1384 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | NaN | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1385 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1386 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | NaN | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1387 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1388 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1389 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | NaN | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1390 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | NaN | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1391 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1392 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | NaN | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | NaN | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1393 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1394 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | NaN | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1395 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1396 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1397 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | NaN | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | NaN | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1398 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | NaN | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1399 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1400 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | NaN | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | NaN | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1401 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1402 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1403 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | NaN | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | NaN | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1404 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1405 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | NaN | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1406 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | NaN | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1407 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1408 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1409 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | NaN | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | NaN | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1410 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1411 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | NaN | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | NaN | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1412 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | NaN | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | NaN | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1413 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1414 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | NaN | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1415 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1416 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | NaN | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | NaN | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1417 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1418 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1419 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | NaN | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | NaN | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1420 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | NaN | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | NaN | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
| 1421 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1422 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1423 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | NaN | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | NaN | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/wp-content/uploads/... | 0.0 | attachment | image/jpeg | 0.0 |
df_web = df_web.loc[df_web['post_type'] == 'product']
df_web.head(len(df_web))
| sku | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 2 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 5 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 6 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 9 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 11 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 13 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 15 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 17 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 18 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 21 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 22 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 24 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 27 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 28 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 31 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 33 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 35 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 36 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 38 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 40 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 43 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 44 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 46 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 49 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 51 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 53 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 54 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 57 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 59 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 61 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 62 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 64 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 66 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 69 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 70 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 73 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 75 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 77 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 78 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 80 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 82 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 84 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 86 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 89 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 90 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 92 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 95 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 96 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 99 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 101 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 103 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 105 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 107 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 108 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 111 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 112 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 114 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 116 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 118 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 120 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 123 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 125 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 127 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 129 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 130 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 132 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 135 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 136 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 138 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 141 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 143 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 145 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 146 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 148 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 151 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 153 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 154 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 157 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 158 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 160 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 162 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 164 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 167 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 169 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 171 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 172 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 174 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 176 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 178 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 181 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 182 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 184 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 186 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 188 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 191 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 193 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 195 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 197 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 199 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 200 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 203 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 204 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 207 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 209 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 211 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 213 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 215 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 216 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 219 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 221 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 223 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 224 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 226 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 228 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 230 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 233 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 234 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 237 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 238 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 240 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 242 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 244 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 247 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 249 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 251 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 252 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 254 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 257 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 259 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 261 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 263 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 264 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 266 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 269 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 270 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 272 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 275 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 276 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 278 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 281 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 283 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 285 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 286 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 288 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 291 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 293 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 295 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 296 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 299 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 301 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 302 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 305 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 307 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 309 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 311 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 312 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 315 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 316 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 318 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 321 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 323 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 324 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 327 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 329 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 331 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 333 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 334 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 336 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 339 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 341 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 343 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 345 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 347 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 349 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 351 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 352 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 355 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 356 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 358 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 360 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 362 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 365 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 366 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 368 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 370 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 373 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 374 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 376 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 378 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 380 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 382 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 384 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 387 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 389 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 390 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 392 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 395 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 397 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 398 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 400 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 402 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 405 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 406 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 408 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 410 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 412 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 415 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 417 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 418 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 420 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 422 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 424 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 426 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 429 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 431 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 432 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 434 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 437 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 439 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 441 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 443 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 444 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 447 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 448 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 451 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 452 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 455 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 456 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 459 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 460 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 462 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 464 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 467 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 468 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 471 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 472 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 474 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 477 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 478 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 481 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 483 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 485 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 486 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 489 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 490 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 492 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 494 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 496 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 498 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 500 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 503 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 505 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 506 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 509 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 510 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 513 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 514 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 517 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 518 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 520 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 523 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 525 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 527 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 528 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 531 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 533 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 534 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 536 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 538 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 541 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 542 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 544 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 547 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 549 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 550 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 552 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 555 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 556 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 559 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 560 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 562 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 564 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 566 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 568 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 570 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 572 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 575 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 576 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 578 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 581 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 582 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 584 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 586 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 589 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 591 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 592 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 595 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 597 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 598 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 601 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 603 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 605 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 607 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 609 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 610 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 612 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 615 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 617 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 618 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 620 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 622 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 624 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 626 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 628 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 631 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 633 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 634 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 637 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 639 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 640 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 643 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 644 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 647 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 648 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 650 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 653 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 654 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 656 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 659 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 661 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 662 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 664 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 666 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 668 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 671 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 672 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 674 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 677 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 679 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 681 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 682 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 685 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 687 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 689 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 690 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 693 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 695 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 696 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 699 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 701 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 702 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 705 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 706 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 709 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 711 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 713 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 715 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 717 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 719 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 720 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 722 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 725 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 726 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 729 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 730 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 732 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 735 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 736 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 739 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 740 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 742 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 744 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 746 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 748 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 751 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 753 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 754 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 756 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 758 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 760 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 762 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 765 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 767 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 769 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 770 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 773 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 774 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 777 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 778 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 781 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 783 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 784 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 787 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 788 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 790 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 793 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 795 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 797 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 799 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 801 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 802 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 804 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 806 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 809 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 810 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 813 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 815 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 816 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 819 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 821 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 822 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 824 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 826 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 828 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 831 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 833 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 834 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 837 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 839 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 840 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 842 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 844 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 847 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 848 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 851 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 852 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 855 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 857 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 859 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 861 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 862 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 865 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 867 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 868 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 870 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 873 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 874 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 877 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 878 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 881 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 882 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 884 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 887 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 889 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 891 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 892 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 895 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 897 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 898 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 901 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 903 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 904 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 907 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 909 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 910 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 913 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 915 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 916 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 918 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 921 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 923 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 924 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 927 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 929 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 930 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 932 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 935 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 937 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 938 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 941 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 943 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 944 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 947 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 948 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 951 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 952 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 954 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 957 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 958 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 961 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 963 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 965 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 966 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 969 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 971 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 973 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 974 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 977 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 979 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 980 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 982 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 984 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 986 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 988 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 990 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 993 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 994 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 997 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 998 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1001 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1002 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1004 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1006 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1009 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1010 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1013 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1015 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1017 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1019 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1020 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1022 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1024 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1026 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1028 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1031 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1032 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1034 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1036 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1039 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1041 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1043 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1045 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1047 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1049 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1050 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1053 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1054 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1057 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1058 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1060 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1063 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1064 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1067 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1068 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1071 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1073 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1075 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1076 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1078 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1080 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1083 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1085 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1087 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1088 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1091 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1092 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1094 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1097 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1099 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1100 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1102 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1104 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1106 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1109 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1111 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1113 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1115 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1117 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1119 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1121 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1122 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1125 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1127 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1129 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1131 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1132 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1135 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1136 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1138 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1141 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1142 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1144 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1146 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1148 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1150 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1152 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1154 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1156 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1158 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1160 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1162 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1165 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1167 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1168 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1170 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1173 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1175 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1177 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1179 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1180 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1183 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1184 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1187 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1188 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1190 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1192 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1194 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1196 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1198 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1200 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1203 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1204 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1206 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1209 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1211 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1213 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1215 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1217 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1218 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1220 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1223 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1224 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1226 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1229 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1231 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1232 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1234 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1237 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1238 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1241 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1242 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1244 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1247 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1248 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1251 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1252 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1254 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1257 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1259 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1260 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1262 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1264 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1266 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1269 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1270 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1272 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1275 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1277 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1279 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1281 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1283 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1285 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1287 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1289 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1290 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1293 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1294 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1297 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1298 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1300 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1302 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1305 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1307 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1308 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1311 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1313 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1314 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1316 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1319 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1321 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1322 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1324 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1327 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1329 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1331 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1332 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1334 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1336 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1338 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1340 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1342 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1344 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1347 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1349 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1350 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1353 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1354 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1356 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1358 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1361 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1362 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1364 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1367 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1368 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1371 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1373 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1374 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1376 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1379 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1380 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1382 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1385 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1387 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1388 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1391 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1393 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1395 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1396 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1399 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1401 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1402 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1404 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1407 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1408 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1410 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1413 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1415 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1417 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1418 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1421 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
| 1422 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 |
#Dimension du dataset
#Nombre d'observations
print(f"Nombre d'observation {df_liaison.shape[0]}")
#Nombre de caractéristiques
print(f"Nombre caractéristiques {df_liaison.shape[1]}")
Nombre d'observation 825 Nombre caractéristiques 2
#Consulter le nombre de colonnes
#La nature des données dans chacune des colonnes
#Le nombre de valeurs présentes dans chacune des colonnes
df_liaison.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 825 entries, 0 to 824 Data columns (total 2 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id_web 734 non-null object 1 product_id 825 non-null int64 dtypes: int64(1), object(1) memory usage: 13.0+ KB
#Les valeurs de la colonne "product_id" sont elles toutes uniques?
print(f"Nombre de valeurs unique: {len(df_liaison['product_id'].unique())}")
print(f"Nombre de valeurs: {len(df_liaison['product_id'])}")
Nombre de valeurs unique: 825 Nombre de valeurs: 825
#Les valeurs de la colonne "id_web" sont-elles toutes uniques?
print(f"Nombre de valeurs unique: {len(df_liaison['id_web'].unique())}")
print(f"Nombre de valeurs: {len(df_liaison['id_web'])}")
Nombre de valeurs unique: 735 Nombre de valeurs: 825
#Avons-nous des articles sans correspondances?
df_liaison.head(len(df_liaison))
#Oui
| id_web | product_id | |
|---|---|---|
| 0 | 15298 | 3847 |
| 1 | 15296 | 3849 |
| 2 | 15300 | 3850 |
| 3 | 19814 | 4032 |
| 4 | 19815 | 4039 |
| 5 | 15303 | 4040 |
| 6 | 14975 | 4041 |
| 7 | 16042 | 4042 |
| 8 | 14980 | 4043 |
| 9 | 16041 | 4045 |
| 10 | 15269 | 4046 |
| 11 | 14977 | 4047 |
| 12 | 16044 | 4048 |
| 13 | 16043 | 4049 |
| 14 | 16449 | 4050 |
| 15 | 16045 | 4051 |
| 16 | 16030 | 4052 |
| 17 | 13127 | 4053 |
| 18 | 19816 | 4054 |
| 19 | NaN | 4055 |
| 20 | 16029 | 4056 |
| 21 | 16039 | 4057 |
| 22 | 16318 | 4058 |
| 23 | 16275 | 4059 |
| 24 | 16498 | 4060 |
| 25 | 16320 | 4062 |
| 26 | 16319 | 4063 |
| 27 | 15966 | 4064 |
| 28 | 15022 | 4065 |
| 29 | 15967 | 4066 |
| 30 | 15490 | 4067 |
| 31 | 16416 | 4068 |
| 32 | 11862 | 4069 |
| 33 | 15444 | 4070 |
| 34 | 15953 | 4071 |
| 35 | 12045 | 4072 |
| 36 | 13074 | 4073 |
| 37 | 15941 | 4074 |
| 38 | 16069 | 4075 |
| 39 | 13072 | 4076 |
| 40 | 15440 | 4077 |
| 41 | 13435 | 4078 |
| 42 | 13078 | 4079 |
| 43 | 13117 | 4081 |
| 44 | 16296 | 4083 |
| 45 | 16014 | 4084 |
| 46 | 16462 | 4085 |
| 47 | 16013 | 4086 |
| 48 | 16180 | 4087 |
| 49 | NaN | 4090 |
| 50 | NaN | 4092 |
| 51 | 15676 | 4094 |
| 52 | 16120 | 4095 |
| 53 | 15564 | 4096 |
| 54 | 15675 | 4097 |
| 55 | 15378 | 4098 |
| 56 | 15813 | 4099 |
| 57 | 13416 | 4100 |
| 58 | 14905 | 4101 |
| 59 | 15767 | 4102 |
| 60 | 16505 | 4103 |
| 61 | 15683 | 4104 |
| 62 | 16504 | 4105 |
| 63 | 15787 | 4106 |
| 64 | 14800 | 4107 |
| 65 | 15353 | 4108 |
| 66 | 15382 | 4115 |
| 67 | 15339 | 4130 |
| 68 | 11668 | 4132 |
| 69 | 13209 | 4137 |
| 70 | 15341 | 4138 |
| 71 | 13217 | 4139 |
| 72 | 304 | 4141 |
| 73 | 11641 | 4142 |
| 74 | 1662 | 4144 |
| 75 | 1360 | 4146 |
| 76 | 15648 | 4147 |
| 77 | 1364 | 4148 |
| 78 | 7086 | 4149 |
| 79 | 1366 | 4150 |
| 80 | 15140 | 4151 |
| 81 | 16238 | 4152 |
| 82 | 16237 | 4153 |
| 83 | 15141 | 4154 |
| 84 | 14944 | 4155 |
| 85 | 14941 | 4156 |
| 86 | 14751 | 4157 |
| 87 | 16093 | 4158 |
| 88 | 15668 | 4159 |
| 89 | 15373 | 4160 |
| 90 | 15375 | 4161 |
| 91 | 14474 | 4162 |
| 92 | 15482 | 4163 |
| 93 | 13453 | 4164 |
| 94 | 15075 | 4165 |
| 95 | 16124 | 4166 |
| 96 | 15785 | 4167 |
| 97 | 15784 | 4168 |
| 98 | 15786 | 4170 |
| 99 | 14332 | 4171 |
| 100 | 16210 | 4172 |
| 101 | 16211 | 4173 |
| 102 | 16209 | 4174 |
| 103 | 15629 | 4176 |
| 104 | 15583 | 4177 |
| 105 | 16160 | 4178 |
| 106 | 16166 | 4179 |
| 107 | 15783 | 4180 |
| 108 | 16560 | 4181 |
| 109 | 15747 | 4182 |
| 110 | 15746 | 4183 |
| 111 | 16190 | 4186 |
| 112 | 16189 | 4187 |
| 113 | 16265 | 4188 |
| 114 | 16191 | 4190 |
| 115 | 16263 | 4191 |
| 116 | 15605 | 4192 |
| 117 | 16529 | 4193 |
| 118 | 15441 | 4194 |
| 119 | NaN | 4195 |
| 120 | 13032 | 4196 |
| 121 | 16256 | 4197 |
| 122 | 16322 | 4198 |
| 123 | 16295 | 4200 |
| 124 | 15656 | 4201 |
| 125 | 15655 | 4202 |
| 126 | 15415 | 4203 |
| 127 | 15414 | 4204 |
| 128 | 15413 | 4205 |
| 129 | 16023 | 4207 |
| 130 | 16024 | 4208 |
| 131 | NaN | 4209 |
| 132 | 15720 | 4210 |
| 133 | 15714 | 4211 |
| 134 | 15717 | 4212 |
| 135 | 15718 | 4213 |
| 136 | 15480 | 4215 |
| 137 | 15213 | 4216 |
| 138 | 15672 | 4217 |
| 139 | 12599 | 4219 |
| 140 | 15758 | 4220 |
| 141 | 15829 | 4221 |
| 142 | 15759 | 4222 |
| 143 | 16585 | 4223 |
| 144 | 15306 | 4224 |
| 145 | 16497 | 4225 |
| 146 | 15261 | 4227 |
| 147 | 12657 | 4228 |
| 148 | 15403 | 4229 |
| 149 | 15461 | 4231 |
| 150 | 16269 | 4232 |
| 151 | NaN | 4233 |
| 152 | 13905 | 4235 |
| 153 | 16567 | 4239 |
| 154 | 15436 | 4240 |
| 155 | 14725 | 4241 |
| 156 | 15310 | 4242 |
| 157 | 15770 | 4244 |
| 158 | 16097 | 4245 |
| 159 | 15428 | 4246 |
| 160 | 15033 | 4248 |
| 161 | 16317 | 4250 |
| 162 | 15032 | 4251 |
| 163 | 6616 | 4253 |
| 164 | 12203 | 4254 |
| 165 | 14253 | 4256 |
| 166 | 12476 | 4257 |
| 167 | 14485 | 4258 |
| 168 | 14945 | 4260 |
| 169 | 15662 | 4261 |
| 170 | 15663 | 4262 |
| 171 | 15664 | 4263 |
| 172 | 15665 | 4264 |
| 173 | 15136 | 4265 |
| 174 | 16537 | 4267 |
| 175 | 16307 | 4268 |
| 176 | 16244 | 4269 |
| 177 | 15839 | 4270 |
| 178 | 13460 | 4271 |
| 179 | 13089 | 4272 |
| 180 | 12942 | 4274 |
| 181 | 14864 | 4275 |
| 182 | 14527 | 4276 |
| 183 | 14865 | 4277 |
| 184 | NaN | 4278 |
| 185 | NaN | 4279 |
| 186 | 15690 | 4280 |
| 187 | 16330 | 4281 |
| 188 | 16154 | 4283 |
| 189 | 16153 | 4285 |
| 190 | 16066 | 4286 |
| 191 | 16065 | 4287 |
| 192 | 15292 | 4288 |
| 193 | 13771 | 4289 |
| 194 | 16246 | 4297 |
| 195 | 16501 | 4298 |
| 196 | 16578 | 4299 |
| 197 | 15567 | 4300 |
| 198 | 16553 | 4301 |
| 199 | 13172 | 4303 |
| 200 | 15120 | 4304 |
| 201 | 15949 | 4306 |
| 202 | 15946 | 4307 |
| 203 | 7818 | 4334 |
| 204 | 13599 | 4336 |
| 205 | 4679 | 4337 |
| 206 | 12586 | 4348 |
| 207 | 12588 | 4350 |
| 208 | 15940 | 4352 |
| 209 | 12587 | 4353 |
| 210 | 12589 | 4355 |
| 211 | 12585 | 4356 |
| 212 | 9562 | 4357 |
| 213 | 13854 | 4358 |
| 214 | 13853 | 4359 |
| 215 | 11585 | 4364 |
| 216 | 11467 | 4391 |
| 217 | 11586 | 4392 |
| 218 | 13765 | 4393 |
| 219 | 13766 | 4394 |
| 220 | 11587 | 4395 |
| 221 | 9636 | 4396 |
| 222 | 12639 | 4397 |
| 223 | 12641 | 4398 |
| 224 | 12640 | 4399 |
| 225 | 14768 | 4400 |
| 226 | 3506 | 4401 |
| 227 | 3510 | 4402 |
| 228 | 3507 | 4404 |
| 229 | 13230 | 4405 |
| 230 | 7819 | 4406 |
| 231 | 3509 | 4407 |
| 232 | 15426 | 4558 |
| 233 | 15621 | 4564 |
| 234 | NaN | 4565 |
| 235 | 15457 | 4566 |
| 236 | 15065 | 4568 |
| 237 | 13604 | 4573 |
| 238 | NaN | 4577 |
| 239 | NaN | 4578 |
| 240 | 12857 | 4582 |
| 241 | 14785 | 4584 |
| 242 | NaN | 4594 |
| 243 | 15476 | 4596 |
| 244 | 14000 | 4597 |
| 245 | 15478 | 4598 |
| 246 | NaN | 4599 |
| 247 | 15475 | 4600 |
| 248 | 16151 | 4601 |
| 249 | 15659 | 4602 |
| 250 | 15147 | 4603 |
| 251 | 15660 | 4604 |
| 252 | 15148 | 4605 |
| 253 | 15149 | 4606 |
| 254 | 15146 | 4607 |
| 255 | 15145 | 4609 |
| 256 | 15801 | 4610 |
| 257 | 15452 | 4611 |
| 258 | 15038 | 4612 |
| 259 | 15030 | 4613 |
| 260 | 15875 | 4614 |
| 261 | 16186 | 4615 |
| 262 | 14371 | 4616 |
| 263 | 10459 | 4617 |
| 264 | 14372 | 4618 |
| 265 | 11049 | 4619 |
| 266 | 15850 | 4620 |
| 267 | 15849 | 4621 |
| 268 | 812 | 4625 |
| 269 | 807 | 4626 |
| 270 | 805 | 4627 |
| 271 | 802 | 4628 |
| 272 | 2534 | 4629 |
| 273 | 793 | 4630 |
| 274 | 791 | 4631 |
| 275 | 2179 | 4632 |
| 276 | 804 | 4633 |
| 277 | 41 | 4634 |
| 278 | 798 | 4635 |
| 279 | 2361 | 4636 |
| 280 | 15848 | 4646 |
| 281 | 16525 | 4647 |
| 282 | 16262 | 4648 |
| 283 | 16261 | 4649 |
| 284 | 15206 | 4650 |
| 285 | 11849 | 4651 |
| 286 | 13515 | 4653 |
| 287 | 13514 | 4654 |
| 288 | 13516 | 4655 |
| 289 | 10814 | 4656 |
| 290 | 11847 | 4657 |
| 291 | 13517 | 4658 |
| 292 | NaN | 4659 |
| 293 | 16081 | 4662 |
| 294 | 15402 | 4664 |
| 295 | 15404 | 4665 |
| 296 | 13647 | 4666 |
| 297 | 14657 | 4668 |
| 298 | 16053 | 4669 |
| 299 | 15525 | 4670 |
| 300 | 15527 | 4671 |
| 301 | 14676 | 4672 |
| 302 | 16057 | 4673 |
| 303 | 16056 | 4674 |
| 304 | 13762 | 4675 |
| 305 | 15280 | 4676 |
| 306 | 15282 | 4677 |
| 307 | 15281 | 4678 |
| 308 | 15283 | 4679 |
| 309 | 15934 | 4680 |
| 310 | 15933 | 4681 |
| 311 | 15575 | 4682 |
| 312 | 16239 | 4683 |
| 313 | 14451 | 4684 |
| 314 | 16324 | 4686 |
| 315 | 15582 | 4687 |
| 316 | 13736 | 4689 |
| 317 | 13659 | 4690 |
| 318 | NaN | 4692 |
| 319 | NaN | 4693 |
| 320 | NaN | 4697 |
| 321 | NaN | 4698 |
| 322 | NaN | 4702 |
| 323 | 15465 | 4703 |
| 324 | 15004 | 4704 |
| 325 | 14699 | 4705 |
| 326 | 15349 | 4706 |
| 327 | 15466 | 4707 |
| 328 | 14700 | 4708 |
| 329 | 10775 | 4709 |
| 330 | 16119 | 4711 |
| 331 | 15667 | 4712 |
| 332 | 14746 | 4713 |
| 333 | 15361 | 4714 |
| 334 | 15196 | 4715 |
| 335 | 15657 | 4716 |
| 336 | 15658 | 4717 |
| 337 | 15670 | 4718 |
| 338 | 16527 | 4719 |
| 339 | 16513 | 4720 |
| 340 | NaN | 4721 |
| 341 | 15880 | 4722 |
| 342 | 15879 | 4723 |
| 343 | 16010 | 4725 |
| 344 | 14950 | 4726 |
| 345 | 16540 | 4727 |
| 346 | 15729 | 4728 |
| 347 | 38 | 4729 |
| 348 | 5646 | 4730 |
| 349 | 8344 | 4731 |
| 350 | 15576 | 4733 |
| 351 | 16138 | 4734 |
| 352 | NaN | 4738 |
| 353 | 14366 | 4739 |
| 354 | 13412 | 4740 |
| 355 | 12601 | 4741 |
| 356 | NaN | 4744 |
| 357 | 14632 | 4748 |
| 358 | 15315 | 4749 |
| 359 | 13627 | 4750 |
| 360 | 14184 | 4752 |
| 361 | 15429 | 4753 |
| 362 | 16132 | 4755 |
| 363 | 14680 | 4757 |
| 364 | 15859 | 4758 |
| 365 | 16229 | 4759 |
| 366 | 14302 | 4776 |
| 367 | 16072 | 4778 |
| 368 | 14300 | 4779 |
| 369 | 13096 | 4780 |
| 370 | 16564 | 4782 |
| 371 | 13754 | 4783 |
| 372 | 15734 | 4784 |
| 373 | 15448 | 4785 |
| 374 | 15881 | 4786 |
| 375 | 15731 | 4788 |
| 376 | 15316 | 4789 |
| 377 | 15732 | 4790 |
| 378 | 14599 | 4791 |
| 379 | 15733 | 4792 |
| 380 | 15730 | 4793 |
| 381 | 12771 | 4794 |
| 382 | 3568 | 4795 |
| 383 | 14506 | 4797 |
| 384 | NaN | 4798 |
| 385 | 15811 | 4799 |
| 386 | 16342 | 4858 |
| 387 | 16292 | 4860 |
| 388 | 15307 | 4861 |
| 389 | 16047 | 4862 |
| 390 | 16255 | 4863 |
| 391 | 15154 | 4864 |
| 392 | 16274 | 4865 |
| 393 | 16148 | 4867 |
| 394 | 14360 | 4869 |
| 395 | 16149 | 4870 |
| 396 | NaN | 4874 |
| 397 | 16289 | 4876 |
| 398 | 14981 | 4885 |
| 399 | 15773 | 4886 |
| 400 | 15776 | 4888 |
| 401 | 16037 | 4889 |
| 402 | 16038 | 4890 |
| 403 | 15807 | 4891 |
| 404 | 15952 | 4892 |
| 405 | 15808 | 4893 |
| 406 | 16062 | 4899 |
| 407 | 16063 | 4900 |
| 408 | 14802 | 4901 |
| 409 | 13052 | 4902 |
| 410 | 14805 | 4903 |
| 411 | 14220 | 4904 |
| 412 | 14374 | 4907 |
| 413 | 14395 | 4908 |
| 414 | 15614 | 4909 |
| 415 | 13809 | 4910 |
| 416 | NaN | 4911 |
| 417 | 15612 | 4912 |
| 418 | 13814 | 4913 |
| 419 | 15613 | 4914 |
| 420 | 15615 | 4915 |
| 421 | 15533 | 4918 |
| 422 | 15531 | 4919 |
| 423 | 15530 | 4920 |
| 424 | 15608 | 4921 |
| 425 | 15586 | 4922 |
| 426 | 15928 | 4923 |
| 427 | 16276 | 4924 |
| 428 | 16277 | 4925 |
| 429 | 15456 | 4926 |
| 430 | 15425 | 4927 |
| 431 | 15047 | 4928 |
| 432 | 15927 | 4929 |
| 433 | 16155 | 4930 |
| 434 | 16280 | 4931 |
| 435 | 9937 | 4932 |
| 436 | 16281 | 4933 |
| 437 | 15554 | 4934 |
| 438 | 15106 | 4936 |
| 439 | 16283 | 4937 |
| 440 | 13379 | 4938 |
| 441 | 15338 | 4939 |
| 442 | 15337 | 4940 |
| 443 | bon-cadeau-25-euros | 4954 |
| 444 | 15737 | 4962 |
| 445 | 15958 | 4963 |
| 446 | 16515 | 4964 |
| 447 | 16586 | 4965 |
| 448 | 11225 | 4970 |
| 449 | NaN | 4973 |
| 450 | 16004 | 4974 |
| 451 | 14756 | 4975 |
| 452 | 16005 | 4976 |
| 453 | 14930 | 4977 |
| 454 | 13313 | 4978 |
| 455 | 15229 | 4980 |
| 456 | 14507 | 4994 |
| 457 | 14509 | 4995 |
| 458 | 14508 | 4996 |
| 459 | 15868 | 5000 |
| 460 | 14581 | 5001 |
| 461 | 14580 | 5002 |
| 462 | 15869 | 5003 |
| 463 | 15871 | 5004 |
| 464 | 15870 | 5006 |
| 465 | 12791 | 5007 |
| 466 | 11602 | 5008 |
| 467 | 15073 | 5010 |
| 468 | 14839 | 5016 |
| 469 | NaN | 5017 |
| 470 | 15272 | 5018 |
| 471 | 14696 | 5019 |
| 472 | NaN | 5020 |
| 473 | 15630 | 5021 |
| 474 | 11996 | 5024 |
| 475 | 13914 | 5025 |
| 476 | 13913 | 5026 |
| 477 | 11997 | 5027 |
| 478 | 531 | 5047 |
| 479 | 13531 | 5056 |
| 480 | 15711 | 5061 |
| 481 | 15713 | 5062 |
| 482 | 15715 | 5063 |
| 483 | 15346 | 5067 |
| 484 | 15345 | 5068 |
| 485 | 15344 | 5069 |
| 486 | NaN | 5070 |
| 487 | NaN | 5075 |
| 488 | 15755 | 5375 |
| 489 | 15677 | 5377 |
| 490 | 14561 | 5379 |
| 491 | 16022 | 5380 |
| 492 | 16011 | 5382 |
| 493 | 3383 | 5383 |
| 494 | 14149 | 5384 |
| 495 | 13904 | 5389 |
| 496 | 14141 | 5391 |
| 497 | 12494 | 5393 |
| 498 | 15462 | 5394 |
| 499 | 15095 | 5395 |
| 500 | 14626 | 5396 |
| 501 | 12496 | 5397 |
| 502 | 12315 | 5398 |
| 503 | 15649 | 5439 |
| 504 | 14809 | 5443 |
| 505 | 15155 | 5444 |
| 506 | 12194 | 5445 |
| 507 | 16328 | 5446 |
| 508 | 14469 | 5448 |
| 509 | 16034 | 5465 |
| 510 | 14679 | 5474 |
| 511 | 15526 | 5477 |
| 512 | 16305 | 5479 |
| 513 | 16306 | 5480 |
| 514 | 15138 | 5481 |
| 515 | 15753 | 5483 |
| 516 | 15756 | 5484 |
| 517 | 16131 | 5485 |
| 518 | 16130 | 5486 |
| 519 | 16129 | 5487 |
| 520 | 14712 | 5488 |
| 521 | 15481 | 5491 |
| 522 | 16146 | 5504 |
| 523 | 14648 | 5505 |
| 524 | 14192 | 5506 |
| 525 | 15860 | 5519 |
| 526 | 15863 | 5520 |
| 527 | 15861 | 5522 |
| 528 | 15862 | 5523 |
| 529 | 15864 | 5524 |
| 530 | 14819 | 5525 |
| 531 | 14828 | 5544 |
| 532 | 14827 | 5545 |
| 533 | 15202 | 5546 |
| 534 | 13959 | 5547 |
| 535 | 13965 | 5548 |
| 536 | 13958 | 5550 |
| 537 | 13957 | 5551 |
| 538 | 13520 | 5552 |
| 539 | 13969 | 5554 |
| 540 | 14715 | 5559 |
| 541 | NaN | 5560 |
| 542 | 19820 | 5561 |
| 543 | 19821 | 5563 |
| 544 | 15748 | 5564 |
| 545 | 19822 | 5565 |
| 546 | 16192 | 5566 |
| 547 | NaN | 5569 |
| 548 | 14730 | 5570 |
| 549 | 14729 | 5573 |
| 550 | 8463 | 5574 |
| 551 | 13982 | 5580 |
| 552 | 15944 | 5608 |
| 553 | 15930 | 5609 |
| 554 | 14912 | 5610 |
| 555 | 15945 | 5611 |
| 556 | 14915 | 5612 |
| 557 | 14855 | 5613 |
| 558 | 14856 | 5614 |
| 559 | 15923 | 5615 |
| 560 | 14845 | 5616 |
| 561 | 14844 | 5617 |
| 562 | 15921 | 5618 |
| 563 | 15922 | 5619 |
| 564 | 12366 | 5628 |
| 565 | 8365 | 5629 |
| 566 | 12365 | 5630 |
| 567 | 14647 | 5690 |
| 568 | 15812 | 5693 |
| 569 | 14661 | 5694 |
| 570 | 16304 | 5695 |
| 571 | 15797 | 5696 |
| 572 | 16094 | 5697 |
| 573 | 14736 | 5700 |
| 574 | 11736 | 5703 |
| 575 | 15036 | 5704 |
| 576 | 15360 | 5705 |
| 577 | 15674 | 5706 |
| 578 | 13557 | 5707 |
| 579 | 15035 | 5709 |
| 580 | 16121 | 5711 |
| 581 | 14241 | 5712 |
| 582 | 14982 | 5715 |
| 583 | 15026 | 5722 |
| 584 | 15116 | 5736 |
| 585 | 15369 | 5737 |
| 586 | 15566 | 5738 |
| 587 | 16003 | 5739 |
| 588 | 15127 | 5741 |
| 589 | 15125 | 5742 |
| 590 | 14323 | 5743 |
| 591 | 15631 | 5747 |
| 592 | 16147 | 5753 |
| 593 | 7033 | 5756 |
| 594 | 11258 | 5760 |
| 595 | 13849 | 5761 |
| 596 | 15818 | 5764 |
| 597 | 15179 | 5766 |
| 598 | 15185 | 5767 |
| 599 | 15183 | 5768 |
| 600 | 15254 | 5769 |
| 601 | 15178 | 5770 |
| 602 | 15184 | 5771 |
| 603 | 15180 | 5772 |
| 604 | 15264 | 5773 |
| 605 | 14338 | 5777 |
| 606 | 15561 | 5778 |
| 607 | 16213 | 5779 |
| 608 | 14692 | 5794 |
| 609 | 13291 | 5795 |
| 610 | 13895 | 5796 |
| 611 | 15688 | 5797 |
| 612 | 14461 | 5799 |
| 613 | 14689 | 5800 |
| 614 | 11277 | 5801 |
| 615 | 15399 | 5802 |
| 616 | 13572 | 5803 |
| 617 | 14955 | 5804 |
| 618 | NaN | 5805 |
| 619 | 13567 | 5806 |
| 620 | 15471 | 5807 |
| 621 | NaN | 5808 |
| 622 | 15080 | 5809 |
| 623 | 14429 | 5810 |
| 624 | 15238 | 5815 |
| 625 | 15237 | 5816 |
| 626 | 14600 | 5817 |
| 627 | 15241 | 5818 |
| 628 | 11933 | 5819 |
| 629 | 15240 | 5820 |
| 630 | 15325 | 5826 |
| 631 | 15328 | 5827 |
| 632 | 15329 | 5829 |
| 633 | 15775 | 5890 |
| 634 | 15774 | 5891 |
| 635 | 14983 | 5892 |
| 636 | 13910 | 5893 |
| 637 | 16539 | 5894 |
| 638 | 15910 | 5896 |
| 639 | 12339 | 5899 |
| 640 | 12869 | 5900 |
| 641 | 14095 | 5902 |
| 642 | 14099 | 5903 |
| 643 | 15856 | 5904 |
| 644 | 12881 | 5905 |
| 645 | 15857 | 5906 |
| 646 | 12882 | 5907 |
| 647 | 15227 | 5912 |
| 648 | 10014 | 5913 |
| 649 | 14265 | 5914 |
| 650 | 14774 | 5916 |
| 651 | 14775 | 5917 |
| 652 | 14773 | 5918 |
| 653 | 15343 | 5922 |
| 654 | 15351 | 5925 |
| 655 | 16323 | 5930 |
| 656 | 523 | 5932 |
| 657 | 15432 | 5950 |
| 658 | 16472 | 5951 |
| 659 | NaN | 5952 |
| 660 | 14379 | 5953 |
| 661 | 15609 | 5954 |
| 662 | 14377 | 5955 |
| 663 | 15895 | 5956 |
| 664 | 13577 | 5957 |
| 665 | 15577 | 5958 |
| 666 | 15766 | 5959 |
| 667 | 15892 | 5960 |
| 668 | 16326 | 5962 |
| 669 | 15574 | 5963 |
| 670 | 13662 | 5964 |
| 671 | 11669 | 5967 |
| 672 | 13215 | 5968 |
| 673 | 13211 | 5969 |
| 674 | 15342 | 6035 |
| 675 | 15318 | 6038 |
| 676 | 13073 | 6041 |
| 677 | 16159 | 6042 |
| 678 | 16264 | 6047 |
| 679 | 14899 | 6049 |
| 680 | 15134 | 6050 |
| 681 | 16133 | 6070 |
| 682 | 16028 | 6072 |
| 683 | 15951 | 6073 |
| 684 | 15487 | 6093 |
| 685 | 15486 | 6094 |
| 686 | 15489 | 6095 |
| 687 | 15529 | 6100 |
| 688 | 14089 | 6101 |
| 689 | 14100 | 6103 |
| 690 | 14092 | 6104 |
| 691 | 14090 | 6105 |
| 692 | 14106 | 6106 |
| 693 | 14101 | 6107 |
| 694 | 14797 | 6108 |
| 695 | 15201 | 6109 |
| 696 | NaN | 6125 |
| 697 | 14923 | 6126 |
| 698 | 14573 | 6127 |
| 699 | 14569 | 6128 |
| 700 | 14570 | 6129 |
| 701 | 15834 | 6137 |
| 702 | 14596 | 6201 |
| 703 | 15126 | 6202 |
| 704 | 14604 | 6204 |
| 705 | 16565 | 6205 |
| 706 | 16580 | 6206 |
| 707 | 16077 | 6207 |
| 708 | 13996 | 6212 |
| 709 | 15072 | 6213 |
| 710 | 11601 | 6214 |
| 711 | 12790 | 6215 |
| 712 | 15070 | 6216 |
| 713 | 16096 | 6221 |
| 714 | 7032 | 6222 |
| 715 | 15324 | 6223 |
| 716 | 15162 | 6225 |
| 717 | 15161 | 6226 |
| 718 | 15163 | 6227 |
| 719 | 16273 | 6278 |
| 720 | 16247 | 6279 |
| 721 | 15654 | 6280 |
| 722 | 15710 | 6299 |
| 723 | 15745 | 6301 |
| 724 | NaN | 6324 |
| 725 | 15678 | 6325 |
| 726 | NaN | 6327 |
| 727 | 15810 | 6328 |
| 728 | 15779 | 6567 |
| 729 | 15707 | 6568 |
| 730 | 15705 | 6569 |
| 731 | 15706 | 6570 |
| 732 | 15704 | 6572 |
| 733 | 15473 | 6573 |
| 734 | 15479 | 6575 |
| 735 | 15647 | 6578 |
| 736 | 15769 | 6584 |
| 737 | 15434 | 6585 |
| 738 | 15764 | 6592 |
| 739 | NaN | 6594 |
| 740 | 16071 | 6615 |
| 741 | 15781 | 6616 |
| 742 | 16031 | 6617 |
| 743 | 15539 | 6618 |
| 744 | 16046 | 6620 |
| 745 | 15204 | 6621 |
| 746 | 15205 | 6622 |
| 747 | 15790 | 6626 |
| 748 | 15791 | 6627 |
| 749 | 15792 | 6628 |
| 750 | 15793 | 6629 |
| 751 | 15795 | 6631 |
| 752 | 15794 | 6632 |
| 753 | 15763 | 6635 |
| 754 | 16152 | 6663 |
| 755 | 15661 | 6664 |
| 756 | 16068 | 6665 |
| 757 | 16067 | 6666 |
| 758 | 8193 | 6738 |
| 759 | 16144 | 6751 |
| 760 | 15256 | 6753 |
| 761 | NaN | 6821 |
| 762 | NaN | 6824 |
| 763 | NaN | 6825 |
| 764 | NaN | 6826 |
| 765 | NaN | 6864 |
| 766 | NaN | 6866 |
| 767 | NaN | 6869 |
| 768 | NaN | 6875 |
| 769 | 15735 | 6884 |
| 770 | 14897 | 6886 |
| 771 | 15736 | 6887 |
| 772 | NaN | 6898 |
| 773 | NaN | 6899 |
| 774 | NaN | 6900 |
| 775 | NaN | 6901 |
| 776 | NaN | 6902 |
| 777 | NaN | 6903 |
| 778 | NaN | 6904 |
| 779 | NaN | 6905 |
| 780 | NaN | 6906 |
| 781 | NaN | 6907 |
| 782 | NaN | 6908 |
| 783 | NaN | 6909 |
| 784 | 15740 | 6920 |
| 785 | 15845 | 6926 |
| 786 | 15741 | 6928 |
| 787 | 16135 | 6930 |
| 788 | NaN | 7008 |
| 789 | NaN | 7009 |
| 790 | NaN | 7010 |
| 791 | NaN | 7015 |
| 792 | 15891 | 7023 |
| 793 | 15887 | 7025 |
| 794 | NaN | 7081 |
| 795 | NaN | 7084 |
| 796 | NaN | 7085 |
| 797 | NaN | 7086 |
| 798 | NaN | 7087 |
| 799 | NaN | 7088 |
| 800 | NaN | 7131 |
| 801 | NaN | 7132 |
| 802 | NaN | 7133 |
| 803 | NaN | 7136 |
| 804 | NaN | 7137 |
| 805 | NaN | 7159 |
| 806 | NaN | 7161 |
| 807 | NaN | 7162 |
| 808 | NaN | 7163 |
| 809 | NaN | 7164 |
| 810 | NaN | 7168 |
| 811 | NaN | 7169 |
| 812 | NaN | 7170 |
| 813 | NaN | 7192 |
| 814 | NaN | 7193 |
| 815 | NaN | 7194 |
| 816 | NaN | 7195 |
| 817 | NaN | 7196 |
| 818 | NaN | 7200 |
| 819 | NaN | 7201 |
| 820 | NaN | 7203 |
| 821 | NaN | 7204 |
| 822 | 13127-1 | 7247 |
| 823 | 14680-1 | 7329 |
| 824 | 16230 | 7338 |
df_erp.head(len(df_erp))
print(df_erp.shape[0])
df_erp.sort_values(by='stock_quantity', ascending=True)
825
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | |
|---|---|---|---|---|---|---|
| 326 | 4706 | 1 | 16.80 | 0 | outofstock | 8.68 |
| 188 | 4283 | 1 | 27.00 | 0 | outofstock | 13.25 |
| 185 | 4279 | 0 | 10.80 | 0 | outofstock | 5.64 |
| 184 | 4278 | 0 | 21.50 | 0 | outofstock | 10.78 |
| 180 | 4274 | 1 | 12.90 | 0 | outofstock | 6.33 |
| 469 | 5017 | 0 | 8.00 | 0 | outofstock | 4.34 |
| 470 | 5018 | 0 | 15.40 | 0 | outofstock | 7.72 |
| 472 | 5020 | 0 | 10.00 | 0 | outofstock | 5.27 |
| 473 | 5021 | 0 | 17.10 | 0 | outofstock | 8.92 |
| 687 | 6100 | 0 | 12.90 | 0 | outofstock | 6.47 |
| 165 | 4256 | 1 | 24.40 | 0 | outofstock | 12.61 |
| 486 | 5070 | 1 | 84.70 | 0 | outofstock | 47.43 |
| 487 | 5075 | 1 | 43.30 | 0 | outofstock | 21.70 |
| 151 | 4233 | 0 | 20.00 | 0 | outofstock | 10.33 |
| 680 | 6050 | 1 | 38.50 | 0 | outofstock | 20.09 |
| 494 | 5384 | 1 | 28.80 | 0 | outofstock | 15.18 |
| 675 | 6038 | 1 | 48.50 | 0 | outofstock | 25.31 |
| 519 | 5487 | 1 | 43.50 | 0 | outofstock | 23.37 |
| 578 | 5707 | 1 | 10.80 | 0 | outofstock | 5.69 |
| 573 | 5700 | 1 | 44.50 | 0 | outofstock | 22.30 |
| 561 | 5617 | 1 | 27.80 | 0 | outofstock | 14.65 |
| 548 | 5570 | 0 | 22.50 | 0 | outofstock | 11.16 |
| 545 | 5565 | 1 | 92.00 | 0 | outofstock | 46.11 |
| 106 | 4179 | 1 | 24.00 | 0 | outofstock | 13.02 |
| 193 | 4289 | 0 | 22.80 | 0 | outofstock | 11.90 |
| 531 | 5544 | 1 | 61.60 | 0 | outofstock | 31.51 |
| 120 | 4196 | 1 | 27.20 | 0 | outofstock | 14.05 |
| 122 | 4198 | 1 | 5.80 | 0 | outofstock | 2.97 |
| 775 | 6901 | 0 | 20.00 | 0 | outofstock | 10.64 |
| 774 | 6900 | 0 | 30.00 | 0 | outofstock | 16.28 |
| 131 | 4209 | 0 | 73.50 | 0 | outofstock | 33.01 |
| 523 | 5505 | 0 | 10.10 | 0 | outofstock | 5.22 |
| 119 | 4195 | 0 | 14.10 | 0 | outofstock | 7.36 |
| 452 | 4976 | 1 | 16.45 | 0 | outofstock | 8.07 |
| 449 | 4973 | 0 | 10.00 | 0 | outofstock | 4.96 |
| 752 | 6632 | 1 | 52.70 | 0 | outofstock | 26.41 |
| 391 | 4864 | 0 | 8.30 | 0 | outofstock | 9.99 |
| 386 | 4858 | 1 | 6.50 | 0 | outofstock | 3.19 |
| 264 | 4618 | 1 | 30.60 | 0 | outofstock | 16.44 |
| 384 | 4798 | 0 | 12.70 | 0 | outofstock | 6.30 |
| 279 | 4636 | 1 | 50.00 | 0 | outofstock | 25.58 |
| 355 | 4741 | 0 | 12.40 | 0 | outofstock | 6.66 |
| 258 | 4612 | 1 | 20.60 | 0 | outofstock | 10.22 |
| 292 | 4659 | 0 | 23.60 | 0 | outofstock | 12.56 |
| 340 | 4721 | 0 | 20.20 | 0 | outofstock | 10.54 |
| 722 | 6299 | 1 | 78.00 | 0 | outofstock | 41.51 |
| 723 | 6301 | 1 | 40.50 | 0 | outofstock | 20.51 |
| 322 | 4702 | 0 | 23.80 | 0 | outofstock | 11.93 |
| 321 | 4698 | 0 | 20.50 | 0 | outofstock | 10.17 |
| 319 | 4693 | 0 | 18.50 | 0 | outofstock | 9.75 |
| 344 | 4726 | 1 | 12.70 | 0 | outofstock | 6.82 |
| 579 | 5709 | 1 | 31.70 | 0 | outofstock | 16.54 |
| 394 | 4869 | 0 | 17.20 | 0 | outofstock | 9.33 |
| 396 | 4874 | 0 | 14.60 | 0 | outofstock | 7.62 |
| 208 | 4352 | 1 | 225.00 | 0 | outofstock | 137.81 |
| 696 | 6125 | 0 | 14.20 | 0 | outofstock | 7.26 |
| 221 | 4396 | 1 | 62.00 | 0 | outofstock | 28.42 |
| 426 | 4923 | 1 | 7.00 | 0 | outofstock | 3.65 |
| 425 | 4922 | 0 | 21.50 | 0 | outofstock | 10.55 |
| 424 | 4921 | 0 | 13.80 | 0 | outofstock | 7.13 |
| 395 | 4870 | 1 | 9.30 | 0 | outofstock | 4.81 |
| 416 | 4911 | 0 | 23.00 | 0 | outofstock | 12.00 |
| 241 | 4584 | 0 | 32.30 | 0 | outofstock | 17.36 |
| 242 | 4594 | 1 | 144.00 | 0 | outofstock | 87.36 |
| 246 | 4599 | 0 | 36.90 | 0 | outofstock | 18.30 |
| 398 | 4885 | 1 | 18.70 | 0 | instock | 9.66 |
| 253 | 4606 | 1 | 50.10 | 0 | outofstock | 24.59 |
| 397 | 4876 | 1 | 22.80 | 0 | outofstock | 11.90 |
| 236 | 4568 | 0 | 21.50 | 0 | outofstock | 11.22 |
| 581 | 5712 | 1 | 57.60 | 0 | outofstock | 30.36 |
| 155 | 4241 | 1 | 8.90 | 0 | outofstock | 4.37 |
| 726 | 6327 | 0 | 28.50 | 0 | outofstock | 14.43 |
| 662 | 5955 | 0 | 27.30 | 0 | outofstock | 13.68 |
| 50 | 4092 | 0 | 47.00 | 0 | outofstock | 25.25 |
| 49 | 4090 | 0 | 73.00 | 0 | outofstock | 33.79 |
| 613 | 5800 | 0 | 32.30 | 0 | outofstock | 16.02 |
| 661 | 5954 | 0 | 18.80 | 0 | outofstock | 9.32 |
| 660 | 5953 | 0 | 47.50 | 0 | outofstock | 23.81 |
| 618 | 5805 | 0 | 29.20 | 0 | outofstock | 15.09 |
| 659 | 5952 | 0 | 42.50 | 0 | outofstock | 22.84 |
| 42 | 4079 | 1 | 37.00 | 0 | outofstock | 19.50 |
| 70 | 4138 | 1 | 25.70 | 0 | outofstock | 13.01 |
| 57 | 4100 | 1 | 15.80 | 0 | outofstock | 8.57 |
| 664 | 5957 | 0 | 39.00 | 0 | outofstock | 20.75 |
| 28 | 4065 | 1 | 19.50 | 0 | outofstock | 9.67 |
| 655 | 5930 | 1 | 14.10 | 0 | outofstock | 6.92 |
| 19 | 4055 | 0 | 86.10 | 0 | outofstock | 37.88 |
| 16 | 4052 | 1 | 33.70 | 0 | outofstock | 18.11 |
| 15 | 4051 | 1 | 7.70 | 0 | outofstock | 4.14 |
| 11 | 4047 | 1 | 18.30 | 0 | outofstock | 9.93 |
| 2 | 3850 | 1 | 20.80 | 0 | outofstock | 10.64 |
| 8 | 4043 | 1 | 60.00 | 0 | outofstock | 29.45 |
| 816 | 7195 | 0 | 21.00 | 1 | instock | 10.31 |
| 807 | 7162 | 0 | 27.00 | 1 | instock | 13.67 |
| 320 | 4697 | 0 | 34.50 | 1 | instock | 18.72 |
| 650 | 5916 | 1 | 93.00 | 1 | instock | 40.49 |
| 482 | 5063 | 1 | 67.00 | 1 | instock | 33.92 |
| 238 | 4577 | 0 | 49.00 | 1 | instock | 24.05 |
| 273 | 4630 | 1 | 62.40 | 1 | instock | 33.21 |
| 621 | 5808 | 0 | 34.20 | 1 | instock | 18.55 |
| 274 | 4631 | 1 | 76.80 | 1 | instock | 38.49 |
| 805 | 7159 | 0 | 31.00 | 1 | instock | 16.18 |
| 71 | 4139 | 1 | 77.40 | 1 | instock | 39.59 |
| 547 | 5569 | 0 | 19.90 | 1 | instock | 9.77 |
| 550 | 5574 | 1 | 59.60 | 2 | instock | 30.18 |
| 10 | 4046 | 1 | 80.00 | 2 | instock | 40.92 |
| 627 | 5818 | 1 | 63.50 | 2 | instock | 32.48 |
| 797 | 7086 | 0 | 26.00 | 2 | instock | 13.43 |
| 197 | 4300 | 1 | 44.00 | 2 | instock | 23.42 |
| 270 | 4627 | 1 | 58.30 | 2 | instock | 28.62 |
| 217 | 4392 | 1 | 49.50 | 3 | instock | 22.01 |
| 692 | 6106 | 1 | 74.80 | 3 | instock | 40.19 |
| 219 | 4394 | 1 | 59.80 | 3 | instock | 27.96 |
| 773 | 6899 | 0 | 26.00 | 3 | instock | 13.70 |
| 682 | 6072 | 1 | 13.60 | 3 | instock | 7.03 |
| 239 | 4578 | 0 | 40.00 | 3 | instock | 20.05 |
| 779 | 6905 | 0 | 21.00 | 3 | instock | 10.63 |
| 328 | 4708 | 1 | 32.60 | 3 | instock | 17.35 |
| 4 | 4039 | 1 | 46.00 | 3 | outofstock | 23.77 |
| 589 | 5742 | 1 | 42.10 | 3 | instock | 22.84 |
| 612 | 5799 | 1 | 40.20 | 3 | instock | 19.94 |
| 290 | 4657 | 1 | 43.00 | 3 | instock | 21.55 |
| 540 | 5559 | 0 | 27.90 | 3 | instock | 13.98 |
| 811 | 7169 | 0 | 45.00 | 3 | instock | 24.41 |
| 352 | 4738 | 0 | 13.50 | 3 | instock | 6.77 |
| 804 | 7137 | 0 | 45.00 | 3 | instock | 23.25 |
| 234 | 4565 | 0 | 30.50 | 3 | instock | 15.92 |
| 483 | 5067 | 1 | 59.90 | 3 | instock | 30.95 |
| 551 | 5580 | 1 | 83.70 | 4 | instock | 41.08 |
| 597 | 5766 | 1 | 35.60 | 4 | instock | 17.66 |
| 767 | 6869 | 0 | 40.00 | 4 | instock | 19.84 |
| 688 | 6101 | 1 | 36.90 | 4 | instock | 20.02 |
| 268 | 4625 | 1 | 52.40 | 4 | instock | 28.16 |
| 657 | 5950 | 1 | 46.00 | 4 | instock | 24.72 |
| 463 | 5004 | 1 | 59.40 | 4 | instock | 29.77 |
| 462 | 5003 | 1 | 48.70 | 4 | instock | 24.16 |
| 461 | 5002 | 1 | 64.90 | 4 | instock | 34.54 |
| 658 | 5951 | 1 | 74.50 | 4 | instock | 39.65 |
| 269 | 4626 | 1 | 52.90 | 4 | instock | 27.88 |
| 32 | 4069 | 1 | 60.00 | 4 | instock | 30.07 |
| 748 | 6627 | 1 | 41.80 | 4 | instock | 22.24 |
| 653 | 5922 | 1 | 48.50 | 4 | instock | 24.31 |
| 649 | 5914 | 1 | 36.00 | 4 | instock | 17.16 |
| 647 | 5912 | 1 | 57.00 | 4 | instock | 25.08 |
| 588 | 5741 | 1 | 73.30 | 4 | instock | 37.87 |
| 291 | 4658 | 1 | 48.80 | 4 | instock | 25.97 |
| 132 | 4210 | 1 | 79.80 | 4 | instock | 39.17 |
| 215 | 4364 | 1 | 49.50 | 4 | instock | 23.60 |
| 631 | 5827 | 1 | 55.00 | 4 | instock | 29.55 |
| 671 | 5967 | 1 | 56.30 | 5 | instock | 30.54 |
| 464 | 5006 | 1 | 48.70 | 5 | instock | 24.91 |
| 788 | 7008 | 0 | 40.00 | 5 | instock | 20.67 |
| 480 | 5061 | 1 | 52.60 | 5 | instock | 27.99 |
| 535 | 5548 | 1 | 48.80 | 5 | instock | 26.47 |
| 632 | 5829 | 1 | 57.00 | 5 | instock | 29.74 |
| 226 | 4401 | 1 | 62.50 | 5 | instock | 27.21 |
| 245 | 4598 | 1 | 41.80 | 5 | instock | 21.38 |
| 222 | 4397 | 1 | 59.00 | 5 | instock | 27.31 |
| 562 | 5618 | 1 | 71.30 | 5 | instock | 36.84 |
| 189 | 4285 | 1 | 41.00 | 5 | instock | 22.03 |
| 538 | 5552 | 1 | 57.70 | 5 | instock | 30.11 |
| 435 | 4932 | 1 | 25.70 | 5 | instock | 12.75 |
| 356 | 4744 | 0 | 13.80 | 5 | instock | 6.84 |
| 691 | 6105 | 1 | 34.80 | 5 | instock | 17.80 |
| 9 | 4045 | 1 | 42.60 | 5 | instock | 22.01 |
| 383 | 4797 | 1 | 78.00 | 5 | instock | 42.32 |
| 251 | 4604 | 1 | 49.00 | 5 | instock | 25.06 |
| 276 | 4633 | 1 | 52.40 | 5 | instock | 27.61 |
| 218 | 4393 | 1 | 57.00 | 5 | instock | 26.13 |
| 133 | 4211 | 1 | 48.50 | 5 | instock | 25.56 |
| 163 | 4253 | 1 | 59.60 | 5 | instock | 30.18 |
| 815 | 7194 | 0 | 31.00 | 5 | instock | 16.02 |
| 559 | 5615 | 1 | 56.40 | 5 | instock | 30.60 |
| 763 | 6825 | 0 | 24.00 | 5 | instock | 12.40 |
| 733 | 6573 | 1 | 68.30 | 5 | instock | 35.29 |
| 806 | 7161 | 0 | 21.00 | 5 | instock | 10.85 |
| 18 | 4054 | 1 | 71.60 | 6 | instock | 38.47 |
| 822 | 7247 | 1 | 54.80 | 6 | instock | 27.18 |
| 754 | 6663 | 1 | 50.40 | 6 | instock | 26.04 |
| 263 | 4617 | 1 | 67.50 | 6 | instock | 35.57 |
| 190 | 4286 | 1 | 69.80 | 6 | instock | 36.06 |
| 457 | 4995 | 1 | 78.00 | 6 | instock | 42.32 |
| 626 | 5817 | 1 | 57.60 | 6 | instock | 28.87 |
| 818 | 7200 | 0 | 31.00 | 6 | instock | 15.54 |
| 628 | 5819 | 1 | 56.00 | 6 | instock | 28.07 |
| 644 | 5905 | 1 | 43.90 | 6 | instock | 22.23 |
| 43 | 4081 | 1 | 39.00 | 6 | instock | 19.14 |
| 330 | 4711 | 1 | 55.40 | 6 | instock | 29.77 |
| 458 | 4996 | 1 | 78.00 | 6 | instock | 40.70 |
| 125 | 4202 | 1 | 38.00 | 6 | instock | 19.63 |
| 467 | 5010 | 1 | 55.60 | 6 | instock | 30.16 |
| 776 | 6902 | 0 | 31.00 | 6 | instock | 16.50 |
| 537 | 5551 | 1 | 36.30 | 6 | instock | 17.82 |
| 602 | 5771 | 1 | 38.40 | 6 | instock | 20.04 |
| 600 | 5769 | 1 | 33.60 | 6 | instock | 16.49 |
| 760 | 6753 | 1 | 46.50 | 6 | instock | 22.82 |
| 484 | 5068 | 1 | 59.90 | 6 | instock | 32.50 |
| 216 | 4391 | 1 | 49.50 | 7 | instock | 22.01 |
| 648 | 5913 | 1 | 36.00 | 7 | instock | 17.16 |
| 68 | 4132 | 1 | 88.40 | 7 | instock | 44.30 |
| 599 | 5768 | 1 | 35.60 | 7 | instock | 18.21 |
| 244 | 4597 | 1 | 61.60 | 7 | instock | 33.42 |
| 745 | 6621 | 1 | 35.20 | 7 | instock | 17.46 |
| 288 | 4655 | 1 | 40.20 | 7 | instock | 20.35 |
| 243 | 4596 | 1 | 43.90 | 7 | instock | 22.91 |
| 329 | 4709 | 1 | 44.00 | 7 | instock | 22.05 |
| 783 | 6909 | 0 | 21.00 | 7 | instock | 11.28 |
| 590 | 5743 | 1 | 57.00 | 7 | instock | 29.74 |
| 803 | 7136 | 0 | 45.00 | 7 | instock | 22.55 |
| 413 | 4908 | 1 | 53.20 | 7 | instock | 26.11 |
| 729 | 6568 | 1 | 72.00 | 7 | instock | 35.71 |
| 701 | 6137 | 1 | 46.00 | 7 | instock | 24.00 |
| 285 | 4651 | 1 | 49.00 | 7 | instock | 24.81 |
| 629 | 5820 | 1 | 63.50 | 7 | instock | 32.48 |
| 272 | 4629 | 1 | 52.40 | 7 | instock | 27.07 |
| 17 | 4053 | 1 | 44.30 | 7 | instock | 22.20 |
| 689 | 6103 | 1 | 40.70 | 7 | instock | 21.87 |
| 560 | 5616 | 1 | 38.40 | 7 | instock | 19.05 |
| 690 | 6104 | 1 | 33.20 | 7 | instock | 17.84 |
| 693 | 6107 | 1 | 62.40 | 7 | instock | 31.27 |
| 553 | 5609 | 1 | 38.60 | 7 | instock | 20.54 |
| 735 | 6578 | 1 | 40.00 | 7 | instock | 19.63 |
| 795 | 7084 | 0 | 45.00 | 7 | instock | 24.18 |
| 749 | 6628 | 1 | 32.20 | 7 | instock | 16.80 |
| 734 | 6575 | 1 | 41.80 | 7 | instock | 22.03 |
| 759 | 6751 | 1 | 46.50 | 7 | instock | 24.51 |
| 694 | 6108 | 1 | 46.00 | 7 | instock | 24.72 |
| 757 | 6666 | 1 | 48.50 | 7 | instock | 25.56 |
| 497 | 5393 | 1 | 35.30 | 7 | instock | 18.06 |
| 796 | 7085 | 0 | 30.00 | 8 | instock | 14.73 |
| 286 | 4653 | 1 | 36.20 | 8 | instock | 19.64 |
| 271 | 4628 | 1 | 39.60 | 8 | instock | 21.07 |
| 403 | 4891 | 1 | 27.90 | 8 | instock | 14.70 |
| 250 | 4603 | 1 | 31.50 | 8 | instock | 15.95 |
| 249 | 4602 | 1 | 31.50 | 8 | instock | 16.93 |
| 668 | 5962 | 1 | 30.00 | 8 | instock | 15.50 |
| 265 | 4619 | 1 | 59.00 | 8 | instock | 32.01 |
| 191 | 4287 | 1 | 38.60 | 8 | instock | 20.34 |
| 762 | 6824 | 0 | 28.00 | 8 | instock | 14.32 |
| 36 | 4073 | 1 | 77.80 | 8 | instock | 40.60 |
| 536 | 5550 | 1 | 34.30 | 8 | instock | 17.90 |
| 41 | 4078 | 1 | 44.00 | 8 | instock | 22.28 |
| 527 | 5522 | 1 | 48.40 | 8 | instock | 26.26 |
| 781 | 6907 | 0 | 27.00 | 8 | instock | 13.67 |
| 542 | 5561 | 1 | 58.00 | 8 | instock | 30.27 |
| 35 | 4072 | 1 | 32.00 | 8 | instock | 15.71 |
| 64 | 4107 | 1 | 35.00 | 8 | instock | 17.54 |
| 793 | 7025 | 1 | 69.00 | 8 | instock | 34.22 |
| 770 | 6886 | 1 | 42.00 | 8 | instock | 20.62 |
| 502 | 5398 | 1 | 39.00 | 8 | instock | 21.16 |
| 275 | 4632 | 1 | 50.00 | 9 | instock | 26.87 |
| 709 | 6213 | 1 | 121.00 | 9 | instock | 63.14 |
| 710 | 6214 | 1 | 99.00 | 9 | instock | 49.62 |
| 528 | 5523 | 1 | 60.40 | 9 | instock | 31.83 |
| 529 | 5524 | 1 | 38.60 | 9 | instock | 19.74 |
| 518 | 5486 | 1 | 49.50 | 9 | instock | 26.09 |
| 769 | 6884 | 1 | 46.50 | 9 | instock | 24.99 |
| 325 | 4705 | 1 | 31.60 | 9 | instock | 17.14 |
| 593 | 5756 | 1 | 42.20 | 9 | instock | 25.85 |
| 567 | 5690 | 1 | 44.60 | 9 | instock | 21.89 |
| 604 | 5773 | 1 | 32.80 | 9 | instock | 17.79 |
| 411 | 4904 | 1 | 137.00 | 9 | instock | 67.95 |
| 821 | 7204 | 0 | 45.00 | 9 | instock | 24.18 |
| 252 | 4605 | 1 | 32.20 | 9 | instock | 16.47 |
| 784 | 6920 | 1 | 50.50 | 9 | instock | 25.05 |
| 672 | 5968 | 1 | 71.50 | 9 | instock | 35.83 |
| 220 | 4395 | 1 | 27.50 | 9 | instock | 13.11 |
| 544 | 5564 | 1 | 30.80 | 10 | instock | 16.07 |
| 422 | 4919 | 1 | 24.40 | 10 | instock | 12.86 |
| 375 | 4788 | 1 | 12.30 | 10 | instock | 6.29 |
| 135 | 4213 | 1 | 58.80 | 10 | instock | 29.16 |
| 1 | 3849 | 1 | 34.30 | 10 | instock | 17.54 |
| 224 | 4399 | 1 | 59.00 | 10 | instock | 28.12 |
| 223 | 4398 | 1 | 59.00 | 10 | instock | 28.39 |
| 493 | 5383 | 1 | 19.50 | 10 | instock | 10.18 |
| 196 | 4299 | 1 | 39.10 | 10 | instock | 19.19 |
| 720 | 6279 | 1 | 45.90 | 10 | instock | 22.77 |
| 315 | 4687 | 1 | 30.10 | 10 | instock | 15.40 |
| 641 | 5902 | 1 | 35.10 | 10 | instock | 18.14 |
| 563 | 5619 | 1 | 71.30 | 10 | instock | 38.31 |
| 750 | 6629 | 1 | 37.70 | 10 | instock | 19.48 |
| 789 | 7009 | 0 | 40.00 | 10 | instock | 19.63 |
| 262 | 4616 | 1 | 57.00 | 10 | instock | 27.98 |
| 751 | 6631 | 1 | 47.20 | 10 | instock | 24.39 |
| 450 | 4974 | 1 | 23.00 | 10 | instock | 12.12 |
| 673 | 5969 | 1 | 69.00 | 10 | instock | 37.43 |
| 124 | 4201 | 1 | 38.00 | 11 | instock | 19.24 |
| 718 | 6227 | 1 | 40.20 | 11 | instock | 21.39 |
| 520 | 5488 | 1 | 43.50 | 11 | instock | 22.70 |
| 798 | 7087 | 0 | 30.00 | 11 | instock | 15.66 |
| 676 | 6041 | 1 | 71.70 | 11 | instock | 36.30 |
| 407 | 4900 | 1 | 20.80 | 11 | instock | 10.75 |
| 277 | 4634 | 1 | 41.00 | 11 | instock | 20.12 |
| 227 | 4402 | 1 | 176.00 | 11 | instock | 78.25 |
| 744 | 6620 | 1 | 51.00 | 11 | instock | 27.14 |
| 552 | 5608 | 1 | 30.50 | 11 | instock | 15.29 |
| 764 | 6826 | 0 | 18.00 | 11 | instock | 8.93 |
| 747 | 6626 | 1 | 33.20 | 11 | instock | 16.47 |
| 510 | 5474 | 1 | 42.00 | 11 | instock | 22.57 |
| 456 | 4994 | 1 | 78.00 | 11 | instock | 40.70 |
| 509 | 5465 | 1 | 54.80 | 12 | instock | 28.60 |
| 591 | 5747 | 1 | 24.50 | 12 | instock | 12.15 |
| 703 | 6202 | 1 | 116.40 | 12 | instock | 63.15 |
| 620 | 5807 | 1 | 27.30 | 12 | instock | 13.82 |
| 546 | 5566 | 1 | 27.50 | 12 | instock | 14.63 |
| 466 | 5008 | 1 | 105.00 | 12 | instock | 56.42 |
| 481 | 5062 | 1 | 45.00 | 12 | instock | 23.25 |
| 526 | 5520 | 1 | 38.60 | 12 | instock | 19.15 |
| 410 | 4903 | 1 | 102.30 | 12 | instock | 51.80 |
| 603 | 5772 | 1 | 29.70 | 12 | instock | 15.04 |
| 651 | 5917 | 1 | 122.00 | 12 | instock | 54.24 |
| 598 | 5767 | 1 | 175.00 | 12 | instock | 90.42 |
| 652 | 5918 | 1 | 114.00 | 12 | instock | 52.25 |
| 237 | 4573 | 1 | 67.20 | 12 | instock | 36.46 |
| 230 | 4406 | 1 | 157.00 | 12 | instock | 69.08 |
| 134 | 4212 | 1 | 39.80 | 12 | instock | 21.39 |
| 225 | 4400 | 1 | 44.00 | 12 | instock | 21.18 |
| 740 | 6615 | 1 | 32.80 | 12 | instock | 16.95 |
| 785 | 6926 | 1 | 49.90 | 12 | instock | 27.07 |
| 167 | 4258 | 1 | 32.10 | 12 | instock | 17.25 |
| 780 | 6906 | 0 | 31.00 | 12 | instock | 16.82 |
| 138 | 4217 | 1 | 17.10 | 12 | instock | 9.28 |
| 732 | 6572 | 1 | 44.00 | 12 | instock | 22.28 |
| 278 | 4635 | 1 | 62.40 | 12 | instock | 31.92 |
| 128 | 4205 | 1 | 23.00 | 12 | instock | 11.65 |
| 791 | 7015 | 0 | 45.00 | 12 | instock | 23.48 |
| 66 | 4115 | 1 | 100.00 | 12 | instock | 52.70 |
| 5 | 4040 | 1 | 34.30 | 12 | instock | 18.25 |
| 6 | 4041 | 1 | 32.70 | 12 | instock | 17.57 |
| 532 | 5545 | 1 | 65.90 | 13 | instock | 32.35 |
| 674 | 6035 | 1 | 17.90 | 13 | instock | 9.34 |
| 656 | 5932 | 1 | 59.90 | 13 | instock | 27.18 |
| 293 | 4662 | 1 | 20.80 | 13 | instock | 10.96 |
| 539 | 5554 | 1 | 38.00 | 13 | instock | 19.83 |
| 289 | 4656 | 1 | 43.00 | 13 | instock | 22.88 |
| 343 | 4725 | 1 | 23.40 | 13 | instock | 12.33 |
| 636 | 5893 | 1 | 26.60 | 13 | instock | 14.29 |
| 65 | 4108 | 1 | 31.70 | 13 | instock | 16.54 |
| 587 | 5739 | 1 | 10.70 | 13 | instock | 5.53 |
| 712 | 6216 | 1 | 121.00 | 14 | instock | 60.02 |
| 287 | 4654 | 1 | 33.40 | 14 | instock | 17.43 |
| 517 | 5485 | 1 | 33.40 | 14 | instock | 16.57 |
| 814 | 7193 | 0 | 27.00 | 14 | instock | 13.67 |
| 231 | 4407 | 1 | 104.00 | 14 | instock | 46.71 |
| 711 | 6215 | 1 | 115.00 | 14 | instock | 56.45 |
| 346 | 4728 | 1 | 29.50 | 14 | instock | 14.48 |
| 485 | 5069 | 1 | 65.00 | 14 | instock | 35.26 |
| 81 | 4152 | 1 | 19.20 | 14 | instock | 9.52 |
| 555 | 5611 | 1 | 63.40 | 14 | instock | 33.74 |
| 782 | 6908 | 0 | 31.00 | 14 | instock | 15.70 |
| 823 | 7329 | 0 | 26.50 | 14 | instock | 13.42 |
| 500 | 5396 | 1 | 17.10 | 14 | instock | 8.48 |
| 399 | 4886 | 1 | 28.40 | 14 | instock | 14.53 |
| 646 | 5907 | 1 | 17.70 | 14 | instock | 9.42 |
| 572 | 5697 | 1 | 29.90 | 14 | instock | 15.29 |
| 381 | 4794 | 1 | 41.60 | 14 | instock | 22.14 |
| 414 | 4909 | 1 | 25.90 | 14 | instock | 12.85 |
| 409 | 4902 | 1 | 46.00 | 15 | instock | 23.53 |
| 247 | 4600 | 1 | 26.50 | 15 | instock | 13.14 |
| 380 | 4793 | 1 | 18.70 | 15 | instock | 9.37 |
| 608 | 5794 | 1 | 21.70 | 15 | instock | 10.65 |
| 586 | 5738 | 1 | 14.60 | 15 | instock | 7.17 |
| 465 | 5007 | 1 | 105.00 | 15 | instock | 55.88 |
| 229 | 4405 | 1 | 68.10 | 15 | instock | 32.46 |
| 175 | 4268 | 1 | 15.20 | 15 | instock | 7.54 |
| 564 | 5628 | 1 | 25.00 | 15 | instock | 12.79 |
| 7 | 4042 | 1 | 31.20 | 15 | instock | 15.48 |
| 48 | 4087 | 1 | 14.40 | 15 | instock | 7.81 |
| 582 | 5715 | 1 | 13.70 | 15 | instock | 7.29 |
| 345 | 4727 | 1 | 26.00 | 15 | instock | 12.90 |
| 786 | 6928 | 1 | 19.00 | 15 | instock | 9.62 |
| 642 | 5903 | 1 | 27.30 | 15 | instock | 13.82 |
| 771 | 6887 | 1 | 21.80 | 15 | instock | 11.71 |
| 421 | 4918 | 1 | 37.20 | 15 | instock | 18.64 |
| 199 | 4303 | 1 | 30.00 | 15 | instock | 15.19 |
| 654 | 5925 | 1 | 49.50 | 15 | instock | 25.06 |
| 423 | 4920 | 1 | 24.40 | 16 | instock | 12.86 |
| 172 | 4264 | 1 | 17.80 | 16 | instock | 9.20 |
| 756 | 6665 | 1 | 27.70 | 16 | instock | 14.60 |
| 755 | 6664 | 1 | 35.60 | 16 | instock | 19.31 |
| 96 | 4167 | 1 | 14.30 | 16 | instock | 7.24 |
| 401 | 4889 | 1 | 25.30 | 16 | instock | 12.55 |
| 166 | 4257 | 1 | 31.70 | 16 | instock | 17.20 |
| 753 | 6635 | 1 | 22.40 | 16 | instock | 10.99 |
| 746 | 6622 | 1 | 42.20 | 16 | instock | 22.02 |
| 543 | 5563 | 1 | 58.00 | 16 | instock | 29.07 |
| 702 | 6201 | 1 | 105.60 | 16 | instock | 57.29 |
| 727 | 6328 | 1 | 22.40 | 16 | instock | 11.23 |
| 67 | 4130 | 1 | 23.00 | 16 | instock | 12.48 |
| 0 | 3847 | 1 | 24.20 | 16 | instock | 12.88 |
| 534 | 5547 | 1 | 24.60 | 16 | instock | 12.71 |
| 708 | 6212 | 1 | 115.00 | 16 | instock | 59.42 |
| 261 | 4615 | 1 | 24.00 | 16 | instock | 12.28 |
| 706 | 6206 | 1 | 25.20 | 16 | instock | 13.15 |
| 59 | 4102 | 1 | 16.30 | 16 | instock | 8.00 |
| 609 | 5795 | 1 | 23.00 | 16 | instock | 11.29 |
| 371 | 4783 | 1 | 29.50 | 16 | instock | 15.85 |
| 302 | 4673 | 1 | 19.80 | 17 | instock | 10.33 |
| 408 | 4901 | 1 | 41.00 | 17 | instock | 20.76 |
| 794 | 7081 | 0 | 45.00 | 17 | instock | 23.95 |
| 715 | 6223 | 1 | 26.70 | 17 | instock | 13.80 |
| 55 | 4098 | 1 | 22.10 | 17 | instock | 10.96 |
| 195 | 4298 | 1 | 23.20 | 17 | instock | 11.99 |
| 400 | 4888 | 1 | 27.90 | 17 | instock | 14.85 |
| 182 | 4276 | 1 | 17.60 | 17 | instock | 9.46 |
| 558 | 5614 | 1 | 19.20 | 17 | instock | 9.42 |
| 695 | 6109 | 1 | 39.20 | 17 | instock | 21.06 |
| 768 | 6875 | 0 | 40.00 | 17 | instock | 20.46 |
| 704 | 6204 | 1 | 31.00 | 17 | instock | 15.86 |
| 228 | 4404 | 1 | 108.50 | 17 | instock | 52.22 |
| 521 | 5491 | 1 | 26.50 | 18 | instock | 13.01 |
| 819 | 7201 | 0 | 31.00 | 18 | instock | 16.02 |
| 53 | 4096 | 1 | 22.80 | 18 | instock | 11.54 |
| 506 | 5445 | 1 | 16.30 | 18 | instock | 8.00 |
| 341 | 4722 | 1 | 13.70 | 18 | instock | 6.72 |
| 455 | 4980 | 1 | 26.50 | 18 | instock | 14.10 |
| 171 | 4263 | 1 | 15.80 | 18 | instock | 8.49 |
| 103 | 4176 | 1 | 13.50 | 18 | instock | 6.63 |
| 283 | 4649 | 1 | 16.50 | 18 | instock | 8.10 |
| 240 | 4582 | 1 | 109.60 | 18 | instock | 53.80 |
| 406 | 4899 | 1 | 21.20 | 18 | instock | 11.17 |
| 69 | 4137 | 1 | 29.80 | 18 | instock | 15.86 |
| 724 | 6324 | 0 | 92.00 | 18 | instock | 99.00 |
| 460 | 5001 | 1 | 217.50 | 18 | instock | 116.87 |
| 533 | 5546 | 1 | 15.20 | 18 | instock | 7.93 |
| 511 | 5477 | 1 | 19.80 | 18 | instock | 10.43 |
| 451 | 4975 | 1 | 23.70 | 19 | instock | 12.73 |
| 731 | 6570 | 1 | 29.20 | 19 | instock | 14.33 |
| 342 | 4723 | 1 | 29.00 | 19 | instock | 15.43 |
| 198 | 4301 | 1 | 17.50 | 19 | instock | 9.49 |
| 34 | 4071 | 1 | 33.20 | 19 | instock | 17.15 |
| 556 | 5612 | 1 | 124.80 | 19 | instock | 66.41 |
| 739 | 6594 | 0 | 9.10 | 19 | instock | 4.61 |
| 370 | 4782 | 1 | 9.80 | 19 | instock | 5.01 |
| 800 | 7131 | 0 | 45.00 | 19 | instock | 24.18 |
| 601 | 5770 | 1 | 34.40 | 19 | instock | 18.13 |
| 107 | 4180 | 1 | 24.00 | 19 | instock | 12.28 |
| 402 | 4890 | 1 | 17.00 | 19 | instock | 8.78 |
| 522 | 5504 | 1 | 13.80 | 19 | instock | 6.77 |
| 235 | 4566 | 1 | 28.50 | 19 | instock | 15.31 |
| 51 | 4094 | 1 | 13.70 | 20 | instock | 7.15 |
| 284 | 4650 | 1 | 25.30 | 20 | instock | 13.07 |
| 136 | 4215 | 1 | 26.50 | 20 | instock | 13.97 |
| 373 | 4785 | 1 | 10.10 | 20 | instock | 4.96 |
| 336 | 4717 | 1 | 23.40 | 20 | instock | 11.73 |
| 95 | 4166 | 1 | 20.50 | 20 | instock | 10.27 |
| 367 | 4778 | 1 | 13.90 | 20 | instock | 6.89 |
| 164 | 4254 | 1 | 26.90 | 20 | instock | 14.59 |
| 294 | 4664 | 1 | 16.40 | 20 | instock | 8.39 |
| 596 | 5764 | 1 | 12.90 | 20 | instock | 6.33 |
| 58 | 4101 | 1 | 15.80 | 21 | instock | 8.33 |
| 405 | 4893 | 1 | 27.90 | 21 | instock | 14.99 |
| 144 | 4224 | 1 | 17.20 | 21 | instock | 8.53 |
| 105 | 4178 | 1 | 11.50 | 21 | instock | 6.18 |
| 640 | 5900 | 1 | 18.25 | 21 | instock | 8.96 |
| 372 | 4784 | 1 | 28.50 | 21 | instock | 14.28 |
| 327 | 4707 | 1 | 22.80 | 21 | instock | 11.54 |
| 298 | 4669 | 1 | 20.20 | 21 | instock | 10.65 |
| 297 | 4668 | 1 | 12.30 | 21 | instock | 6.23 |
| 97 | 4168 | 1 | 18.20 | 21 | instock | 9.40 |
| 363 | 4757 | 1 | 26.50 | 21 | instock | 13.01 |
| 610 | 5796 | 1 | 12.50 | 21 | instock | 6.20 |
| 761 | 6821 | 0 | 28.00 | 21 | instock | 14.61 |
| 44 | 4083 | 1 | 17.00 | 21 | instock | 8.78 |
| 778 | 6904 | 0 | 31.00 | 22 | instock | 15.70 |
| 149 | 4231 | 1 | 11.10 | 22 | instock | 5.85 |
| 549 | 5573 | 1 | 34.70 | 22 | instock | 17.39 |
| 801 | 7132 | 0 | 45.00 | 22 | instock | 24.18 |
| 707 | 6207 | 1 | 25.20 | 22 | instock | 12.89 |
| 736 | 6584 | 1 | 13.50 | 22 | instock | 6.91 |
| 725 | 6325 | 1 | 27.90 | 22 | instock | 15.14 |
| 377 | 4790 | 1 | 11.10 | 22 | instock | 5.62 |
| 30 | 4067 | 1 | 22.00 | 22 | instock | 11.37 |
| 282 | 4648 | 1 | 24.30 | 22 | instock | 12.68 |
| 614 | 5801 | 1 | 24.00 | 22 | instock | 12.90 |
| 177 | 4270 | 1 | 15.50 | 22 | instock | 8.25 |
| 713 | 6221 | 1 | 23.50 | 22 | instock | 12.02 |
| 385 | 4799 | 1 | 14.90 | 23 | instock | 7.39 |
| 530 | 5525 | 1 | 12.00 | 23 | instock | 6.26 |
| 495 | 5389 | 1 | 16.10 | 23 | instock | 8.32 |
| 360 | 4752 | 1 | 27.90 | 23 | instock | 13.69 |
| 45 | 4084 | 1 | 23.20 | 23 | instock | 11.63 |
| 338 | 4719 | 1 | 12.50 | 23 | instock | 6.46 |
| 334 | 4715 | 1 | 11.10 | 23 | instock | 5.91 |
| 638 | 5896 | 1 | 24.70 | 23 | instock | 12.76 |
| 317 | 4690 | 1 | 12.80 | 23 | instock | 6.94 |
| 314 | 4686 | 1 | 14.00 | 23 | instock | 7.31 |
| 361 | 4753 | 1 | 12.00 | 23 | instock | 6.51 |
| 110 | 4183 | 1 | 21.40 | 23 | instock | 10.61 |
| 178 | 4271 | 1 | 16.60 | 23 | instock | 8.32 |
| 259 | 4613 | 1 | 16.90 | 23 | instock | 8.38 |
| 566 | 5630 | 1 | 28.00 | 23 | instock | 14.61 |
| 792 | 7023 | 1 | 27.50 | 23 | instock | 14.21 |
| 454 | 4978 | 1 | 18.50 | 23 | instock | 9.46 |
| 446 | 4964 | 1 | 12.10 | 23 | instock | 6.50 |
| 444 | 4962 | 1 | 11.30 | 23 | instock | 5.55 |
| 443 | 4954 | 1 | 25.00 | 23 | instock | 13.30 |
| 441 | 4939 | 1 | 12.90 | 23 | instock | 6.53 |
| 260 | 4614 | 1 | 19.00 | 23 | instock | 10.31 |
| 576 | 5705 | 1 | 19.80 | 23 | instock | 9.82 |
| 574 | 5703 | 1 | 29.40 | 23 | instock | 15.95 |
| 580 | 5711 | 1 | 25.00 | 23 | instock | 12.40 |
| 80 | 4151 | 1 | 13.70 | 23 | instock | 7.36 |
| 418 | 4913 | 1 | 28.00 | 23 | instock | 14.76 |
| 232 | 4558 | 1 | 28.10 | 23 | instock | 15.24 |
| 415 | 4910 | 1 | 17.30 | 23 | instock | 8.76 |
| 513 | 5480 | 1 | 10.40 | 23 | instock | 5.21 |
| 666 | 5959 | 1 | 15.40 | 24 | instock | 7.72 |
| 634 | 5891 | 1 | 19.00 | 24 | instock | 9.72 |
| 571 | 5696 | 1 | 17.50 | 24 | instock | 9.49 |
| 12 | 4048 | 1 | 22.80 | 24 | instock | 11.78 |
| 63 | 4106 | 1 | 12.60 | 24 | instock | 6.64 |
| 594 | 5760 | 1 | 13.10 | 24 | instock | 8.43 |
| 524 | 5506 | 1 | 18.20 | 24 | instock | 9.59 |
| 161 | 4250 | 1 | 19.50 | 24 | instock | 9.97 |
| 719 | 6278 | 1 | 9.00 | 24 | instock | 4.65 |
| 303 | 4674 | 1 | 19.00 | 24 | instock | 9.91 |
| 427 | 4924 | 1 | 12.80 | 24 | instock | 6.28 |
| 447 | 4965 | 1 | 7.10 | 24 | instock | 3.67 |
| 359 | 4750 | 1 | 16.40 | 24 | instock | 8.30 |
| 419 | 4914 | 1 | 25.90 | 24 | instock | 12.98 |
| 499 | 5395 | 1 | 12.70 | 24 | instock | 6.82 |
| 248 | 4601 | 1 | 16.10 | 24 | instock | 8.57 |
| 501 | 5397 | 1 | 24.00 | 24 | instock | 12.40 |
| 296 | 4666 | 1 | 21.00 | 24 | instock | 11.18 |
| 685 | 6094 | 1 | 13.40 | 24 | instock | 6.65 |
| 436 | 4933 | 1 | 18.40 | 24 | instock | 9.22 |
| 146 | 4227 | 1 | 12.60 | 24 | instock | 6.77 |
| 569 | 5694 | 1 | 12.70 | 25 | instock | 6.23 |
| 31 | 4068 | 1 | 16.60 | 25 | instock | 8.92 |
| 617 | 5804 | 1 | 25.00 | 25 | instock | 12.40 |
| 332 | 4713 | 1 | 18.40 | 25 | instock | 9.22 |
| 438 | 4936 | 1 | 11.10 | 25 | instock | 5.68 |
| 13 | 4049 | 1 | 19.30 | 25 | instock | 10.27 |
| 306 | 4677 | 1 | 9.50 | 25 | instock | 4.91 |
| 585 | 5737 | 1 | 11.00 | 25 | instock | 5.57 |
| 677 | 6042 | 1 | 8.50 | 25 | instock | 4.57 |
| 514 | 5481 | 1 | 11.50 | 25 | instock | 5.64 |
| 139 | 4219 | 1 | 16.70 | 25 | instock | 8.97 |
| 516 | 5484 | 1 | 21.60 | 25 | instock | 11.61 |
| 716 | 6225 | 1 | 20.40 | 26 | instock | 10.22 |
| 92 | 4163 | 1 | 10.80 | 26 | instock | 5.80 |
| 717 | 6226 | 1 | 20.40 | 26 | instock | 10.96 |
| 365 | 4759 | 1 | 16.90 | 26 | instock | 8.30 |
| 174 | 4267 | 1 | 19.00 | 26 | instock | 9.33 |
| 432 | 4929 | 1 | 16.70 | 26 | instock | 8.28 |
| 192 | 4288 | 1 | 26.70 | 26 | instock | 14.48 |
| 459 | 5000 | 1 | 27.30 | 26 | instock | 14.53 |
| 624 | 5815 | 1 | 16.60 | 26 | instock | 9.01 |
| 802 | 7133 | 0 | 45.00 | 26 | instock | 23.95 |
| 347 | 4729 | 1 | 8.60 | 26 | instock | 4.22 |
| 179 | 4272 | 1 | 9.20 | 26 | instock | 4.85 |
| 112 | 4187 | 1 | 13.30 | 26 | instock | 6.67 |
| 333 | 4714 | 1 | 13.30 | 26 | instock | 7.22 |
| 439 | 4937 | 1 | 9.90 | 26 | instock | 4.86 |
| 577 | 5706 | 1 | 10.30 | 26 | instock | 5.32 |
| 3 | 4032 | 1 | 14.10 | 26 | instock | 6.92 |
| 94 | 4165 | 1 | 12.00 | 26 | instock | 5.95 |
| 378 | 4791 | 1 | 13.60 | 27 | instock | 7.38 |
| 280 | 4646 | 1 | 21.50 | 27 | instock | 10.89 |
| 351 | 4734 | 1 | 15.30 | 27 | instock | 8.22 |
| 173 | 4265 | 1 | 9.60 | 27 | instock | 4.81 |
| 145 | 4225 | 1 | 16.90 | 27 | instock | 9.08 |
| 643 | 5904 | 1 | 18.80 | 27 | instock | 9.32 |
| 331 | 4712 | 1 | 15.80 | 27 | instock | 8.57 |
| 491 | 5380 | 1 | 18.00 | 27 | instock | 9.77 |
| 376 | 4789 | 1 | 11.10 | 27 | instock | 5.96 |
| 29 | 4066 | 1 | 20.80 | 27 | instock | 10.42 |
| 153 | 4239 | 1 | 28.00 | 27 | instock | 14.76 |
| 114 | 4190 | 1 | 12.10 | 27 | instock | 6.13 |
| 158 | 4245 | 1 | 8.90 | 27 | instock | 4.69 |
| 623 | 5810 | 1 | 24.00 | 27 | instock | 12.77 |
| 479 | 5056 | 1 | 7.50 | 27 | instock | 3.95 |
| 46 | 4085 | 1 | 19.00 | 27 | instock | 9.82 |
| 266 | 4620 | 1 | 11.90 | 28 | instock | 6.03 |
| 813 | 7192 | 0 | 31.00 | 28 | instock | 16.50 |
| 300 | 4671 | 1 | 21.90 | 28 | instock | 11.32 |
| 420 | 4915 | 1 | 25.90 | 28 | instock | 13.38 |
| 305 | 4676 | 1 | 12.90 | 28 | instock | 6.93 |
| 728 | 6567 | 1 | 28.40 | 28 | instock | 14.67 |
| 233 | 4564 | 1 | 21.70 | 28 | instock | 11.66 |
| 431 | 4928 | 1 | 7.90 | 28 | instock | 3.88 |
| 313 | 4684 | 1 | 18.10 | 28 | instock | 9.45 |
| 98 | 4170 | 1 | 9.00 | 28 | instock | 4.51 |
| 104 | 4177 | 1 | 13.50 | 28 | instock | 7.11 |
| 176 | 4269 | 1 | 10.20 | 28 | instock | 5.32 |
| 148 | 4229 | 1 | 9.60 | 28 | instock | 4.96 |
| 93 | 4164 | 1 | 7.60 | 28 | instock | 4.04 |
| 787 | 6930 | 1 | 8.40 | 28 | instock | 4.34 |
| 565 | 5629 | 1 | 10.30 | 28 | instock | 5.06 |
| 183 | 4277 | 1 | 24.80 | 28 | instock | 12.69 |
| 557 | 5613 | 1 | 19.20 | 28 | instock | 10.22 |
| 507 | 5446 | 1 | 16.20 | 28 | instock | 8.29 |
| 437 | 4934 | 1 | 22.20 | 28 | instock | 11.93 |
| 714 | 6222 | 1 | 26.40 | 29 | instock | 13.23 |
| 111 | 4186 | 1 | 16.60 | 29 | instock | 9.01 |
| 24 | 4060 | 1 | 11.90 | 29 | instock | 6.33 |
| 683 | 6073 | 1 | 24.50 | 29 | instock | 12.41 |
| 433 | 4930 | 1 | 17.50 | 29 | instock | 9.31 |
| 633 | 5890 | 1 | 19.30 | 29 | instock | 9.77 |
| 637 | 5894 | 1 | 15.40 | 29 | instock | 7.56 |
| 611 | 5797 | 1 | 17.20 | 29 | instock | 9.24 |
| 554 | 5610 | 1 | 18.00 | 29 | instock | 9.02 |
| 678 | 6047 | 1 | 10.90 | 29 | instock | 5.58 |
| 118 | 4194 | 1 | 10.80 | 29 | instock | 5.58 |
| 810 | 7168 | 0 | 45.00 | 29 | instock | 23.25 |
| 154 | 4240 | 1 | 28.00 | 29 | instock | 14.47 |
| 568 | 5693 | 1 | 13.00 | 29 | instock | 6.52 |
| 379 | 4792 | 1 | 21.00 | 29 | instock | 11.28 |
| 498 | 5394 | 1 | 10.70 | 29 | instock | 5.25 |
| 21 | 4057 | 1 | 8.70 | 29 | instock | 4.36 |
| 738 | 6592 | 1 | 24.40 | 29 | instock | 12.10 |
| 737 | 6585 | 1 | 19.00 | 29 | instock | 10.31 |
| 159 | 4246 | 1 | 15.30 | 29 | instock | 8.14 |
| 387 | 4860 | 1 | 8.70 | 29 | instock | 4.63 |
| 257 | 4611 | 1 | 26.20 | 29 | instock | 13.67 |
| 147 | 4228 | 1 | 29.90 | 30 | instock | 16.07 |
| 681 | 6070 | 1 | 9.30 | 30 | instock | 4.95 |
| 25 | 4062 | 1 | 11.90 | 30 | instock | 6.27 |
| 299 | 4670 | 1 | 17.00 | 30 | instock | 8.96 |
| 820 | 7203 | 0 | 45.00 | 30 | instock | 23.48 |
| 115 | 4191 | 1 | 9.30 | 30 | instock | 4.76 |
| 679 | 6049 | 1 | 21.80 | 30 | instock | 10.81 |
| 129 | 4207 | 1 | 6.70 | 30 | instock | 3.63 |
| 492 | 5382 | 1 | 22.80 | 30 | instock | 11.54 |
| 324 | 4704 | 1 | 18.20 | 30 | instock | 9.22 |
| 82 | 4153 | 1 | 29.00 | 30 | instock | 15.13 |
| 37 | 4074 | 1 | 12.70 | 30 | instock | 6.76 |
| 187 | 4281 | 1 | 11.60 | 30 | instock | 5.69 |
| 47 | 4086 | 1 | 16.40 | 30 | instock | 8.13 |
| 353 | 4739 | 1 | 7.40 | 30 | instock | 3.75 |
| 404 | 4892 | 1 | 20.10 | 30 | instock | 10.90 |
| 607 | 5779 | 1 | 5.80 | 30 | instock | 2.88 |
| 156 | 4242 | 1 | 8.60 | 30 | instock | 4.22 |
| 60 | 4103 | 1 | 16.30 | 30 | instock | 8.00 |
| 83 | 4154 | 1 | 9.80 | 31 | instock | 4.91 |
| 307 | 4678 | 1 | 29.80 | 31 | instock | 15.09 |
| 670 | 5964 | 1 | 16.30 | 31 | instock | 8.51 |
| 453 | 4977 | 1 | 16.30 | 31 | instock | 8.84 |
| 304 | 4675 | 1 | 10.70 | 31 | instock | 5.64 |
| 592 | 5753 | 1 | 10.10 | 31 | instock | 5.01 |
| 515 | 5483 | 1 | 17.90 | 31 | instock | 9.71 |
| 168 | 4260 | 1 | 12.20 | 31 | instock | 6.37 |
| 354 | 4740 | 1 | 9.70 | 31 | instock | 5.21 |
| 686 | 6095 | 1 | 29.80 | 31 | instock | 15.86 |
| 100 | 4172 | 1 | 5.70 | 31 | instock | 2.95 |
| 339 | 4720 | 1 | 15.90 | 31 | instock | 8.46 |
| 162 | 4251 | 1 | 14.10 | 31 | instock | 7.65 |
| 348 | 4730 | 1 | 14.30 | 31 | instock | 7.24 |
| 91 | 4162 | 1 | 14.30 | 31 | instock | 7.02 |
| 765 | 6864 | 0 | 40.00 | 32 | instock | 21.08 |
| 698 | 6127 | 1 | 10.60 | 32 | instock | 5.42 |
| 663 | 5956 | 1 | 17.20 | 32 | instock | 8.80 |
| 412 | 4907 | 1 | 22.90 | 32 | instock | 12.42 |
| 440 | 4938 | 1 | 12.50 | 32 | instock | 6.46 |
| 504 | 5443 | 1 | 23.60 | 32 | instock | 12.56 |
| 584 | 5736 | 1 | 14.90 | 32 | instock | 7.31 |
| 33 | 4070 | 1 | 23.40 | 32 | instock | 12.21 |
| 27 | 4064 | 1 | 14.40 | 32 | instock | 7.66 |
| 39 | 4076 | 1 | 14.05 | 32 | instock | 6.90 |
| 374 | 4786 | 1 | 12.10 | 32 | instock | 6.56 |
| 369 | 4780 | 1 | 13.70 | 32 | instock | 6.72 |
| 99 | 4171 | 1 | 7.80 | 32 | instock | 4.15 |
| 116 | 4192 | 1 | 17.80 | 32 | instock | 8.92 |
| 622 | 5809 | 1 | 17.90 | 32 | instock | 9.71 |
| 625 | 5816 | 1 | 16.90 | 32 | instock | 8.73 |
| 121 | 4197 | 1 | 9.40 | 32 | instock | 5.10 |
| 308 | 4679 | 1 | 13.20 | 32 | instock | 6.55 |
| 382 | 4795 | 1 | 12.00 | 32 | instock | 6.08 |
| 335 | 4716 | 1 | 18.60 | 32 | instock | 9.23 |
| 84 | 4155 | 1 | 14.50 | 33 | instock | 7.27 |
| 194 | 4297 | 1 | 19.00 | 33 | instock | 10.31 |
| 490 | 5379 | 1 | 11.10 | 33 | instock | 5.68 |
| 742 | 6617 | 1 | 9.90 | 33 | instock | 5.22 |
| 123 | 4200 | 0 | 5.80 | 33 | instock | 3.12 |
| 570 | 5695 | 1 | 6.50 | 33 | instock | 3.53 |
| 741 | 6616 | 1 | 15.40 | 33 | instock | 7.88 |
| 310 | 4681 | 1 | 7.10 | 33 | instock | 3.56 |
| 26 | 4063 | 1 | 14.50 | 33 | instock | 7.19 |
| 434 | 4931 | 1 | 27.80 | 34 | instock | 15.08 |
| 630 | 5826 | 1 | 41.20 | 34 | instock | 21.71 |
| 117 | 4193 | 1 | 13.50 | 34 | instock | 6.91 |
| 256 | 4610 | 1 | 13.10 | 34 | instock | 6.50 |
| 417 | 4912 | 1 | 25.90 | 34 | instock | 12.98 |
| 615 | 5802 | 1 | 23.80 | 34 | instock | 12.54 |
| 23 | 4059 | 1 | 8.70 | 34 | instock | 4.32 |
| 311 | 4682 | 1 | 9.10 | 34 | instock | 4.84 |
| 669 | 5963 | 1 | 13.50 | 34 | instock | 6.63 |
| 496 | 5391 | 1 | 24.20 | 34 | instock | 13.00 |
| 40 | 4077 | 1 | 22.90 | 34 | instock | 11.95 |
| 389 | 4862 | 1 | 9.90 | 35 | instock | 4.86 |
| 364 | 4758 | 1 | 24.30 | 35 | instock | 12.93 |
| 309 | 4680 | 1 | 6.30 | 35 | instock | 3.29 |
| 357 | 4748 | 1 | 14.50 | 35 | instock | 7.42 |
| 137 | 4216 | 1 | 13.40 | 35 | instock | 7.20 |
| 130 | 4208 | 1 | 7.60 | 35 | instock | 3.77 |
| 337 | 4718 | 1 | 18.20 | 35 | instock | 9.78 |
| 639 | 5899 | 1 | 28.10 | 35 | instock | 14.37 |
| 54 | 4097 | 1 | 12.80 | 35 | instock | 6.48 |
| 525 | 5519 | 1 | 12.90 | 35 | instock | 7.00 |
| 575 | 5704 | 1 | 16.90 | 35 | instock | 8.30 |
| 61 | 4104 | 1 | 9.70 | 35 | instock | 5.11 |
| 38 | 4075 | 1 | 14.70 | 35 | instock | 7.97 |
| 368 | 4779 | 1 | 7.80 | 36 | instock | 4.07 |
| 86 | 4157 | 1 | 12.00 | 36 | instock | 6.45 |
| 87 | 4158 | 1 | 18.50 | 36 | instock | 9.94 |
| 89 | 4160 | 1 | 9.30 | 36 | instock | 4.85 |
| 267 | 4621 | 1 | 16.50 | 36 | instock | 8.53 |
| 90 | 4161 | 1 | 11.60 | 36 | instock | 5.81 |
| 301 | 4672 | 1 | 17.80 | 36 | instock | 9.56 |
| 388 | 4861 | 1 | 8.50 | 36 | instock | 4.17 |
| 790 | 7010 | 0 | 47.00 | 37 | instock | 23.55 |
| 202 | 4307 | 1 | 10.90 | 37 | instock | 5.80 |
| 150 | 4232 | 1 | 11.10 | 37 | instock | 5.62 |
| 186 | 4280 | 1 | 18.90 | 37 | instock | 9.57 |
| 721 | 6280 | 1 | 10.40 | 38 | instock | 5.53 |
| 316 | 4689 | 1 | 12.80 | 38 | instock | 6.68 |
| 583 | 5722 | 1 | 7.10 | 38 | instock | 3.48 |
| 20 | 4056 | 1 | 12.70 | 38 | instock | 6.36 |
| 645 | 5906 | 1 | 19.80 | 38 | instock | 9.72 |
| 358 | 4749 | 1 | 11.90 | 38 | instock | 6.46 |
| 350 | 4733 | 1 | 16.80 | 38 | instock | 8.42 |
| 705 | 6205 | 1 | 20.20 | 38 | instock | 10.54 |
| 160 | 4248 | 1 | 14.80 | 38 | instock | 7.49 |
| 428 | 4925 | 1 | 23.20 | 38 | instock | 11.39 |
| 512 | 5479 | 1 | 10.20 | 38 | instock | 5.16 |
| 430 | 4927 | 1 | 6.50 | 39 | instock | 3.29 |
| 489 | 5377 | 1 | 19.00 | 39 | instock | 10.01 |
| 157 | 4244 | 1 | 13.50 | 39 | instock | 6.63 |
| 22 | 4058 | 1 | 8.70 | 39 | instock | 4.72 |
| 619 | 5806 | 1 | 17.40 | 39 | instock | 8.99 |
| 442 | 4940 | 1 | 20.50 | 39 | instock | 11.02 |
| 295 | 4665 | 1 | 14.40 | 39 | instock | 7.59 |
| 56 | 4099 | 1 | 12.80 | 40 | instock | 6.41 |
| 255 | 4609 | 1 | 11.80 | 40 | instock | 6.04 |
| 824 | 7338 | 1 | 16.30 | 40 | instock | 8.00 |
| 468 | 5016 | 1 | 9.30 | 40 | instock | 4.81 |
| 429 | 4926 | 1 | 7.90 | 40 | instock | 4.04 |
| 505 | 5444 | 1 | 15.50 | 40 | instock | 7.69 |
| 667 | 5960 | 1 | 12.70 | 40 | instock | 6.36 |
| 445 | 4963 | 1 | 7.00 | 41 | instock | 3.44 |
| 254 | 4607 | 1 | 13.40 | 41 | instock | 7.13 |
| 488 | 5375 | 1 | 15.20 | 41 | instock | 8.09 |
| 152 | 4235 | 1 | 17.10 | 41 | instock | 9.01 |
| 141 | 4221 | 1 | 12.80 | 42 | instock | 6.48 |
| 143 | 4223 | 1 | 9.70 | 42 | instock | 4.81 |
| 766 | 6866 | 0 | 40.00 | 42 | instock | 20.67 |
| 758 | 6738 | 1 | 15.40 | 42 | instock | 8.12 |
| 366 | 4776 | 1 | 6.80 | 42 | instock | 3.48 |
| 52 | 4095 | 1 | 12.60 | 42 | instock | 6.31 |
| 508 | 5448 | 1 | 7.20 | 42 | instock | 3.76 |
| 808 | 7163 | 0 | 31.00 | 42 | instock | 16.66 |
| 14 | 4050 | 1 | 21.80 | 42 | instock | 11.26 |
| 323 | 4703 | 1 | 19.80 | 42 | instock | 9.72 |
| 349 | 4731 | 1 | 22.00 | 42 | instock | 11.03 |
| 102 | 4174 | 1 | 5.70 | 43 | instock | 2.92 |
| 108 | 4181 | 1 | 11.90 | 43 | instock | 6.21 |
| 109 | 4182 | 1 | 16.70 | 43 | instock | 8.46 |
| 170 | 4262 | 1 | 15.80 | 43 | instock | 8.33 |
| 312 | 4683 | 1 | 9.10 | 43 | instock | 4.84 |
| 812 | 7170 | 0 | 45.00 | 43 | instock | 23.72 |
| 665 | 5958 | 1 | 8.70 | 44 | instock | 4.50 |
| 85 | 4156 | 1 | 20.35 | 44 | instock | 10.30 |
| 606 | 5778 | 1 | 5.80 | 44 | instock | 3.09 |
| 471 | 5019 | 1 | 19.80 | 45 | instock | 10.43 |
| 281 | 4647 | 1 | 28.50 | 45 | instock | 14.14 |
| 62 | 4105 | 1 | 6.80 | 45 | instock | 3.51 |
| 142 | 4222 | 1 | 8.90 | 45 | instock | 4.74 |
| 699 | 6128 | 1 | 10.60 | 45 | instock | 5.64 |
| 200 | 4304 | 1 | 8.10 | 45 | instock | 4.19 |
| 503 | 5439 | 1 | 13.20 | 46 | instock | 6.68 |
| 616 | 5803 | 1 | 17.10 | 47 | instock | 9.19 |
| 362 | 4755 | 1 | 7.40 | 47 | instock | 3.98 |
| 140 | 4220 | 1 | 11.60 | 48 | instock | 5.75 |
| 392 | 4865 | 1 | 9.80 | 48 | instock | 5.16 |
| 318 | 4692 | 0 | 12.00 | 48 | instock | 6.39 |
| 169 | 4261 | 1 | 9.90 | 48 | instock | 5.01 |
| 101 | 4173 | 1 | 5.70 | 49 | instock | 2.97 |
| 743 | 6618 | 1 | 13.50 | 49 | instock | 7.18 |
| 127 | 4204 | 1 | 11.30 | 50 | instock | 5.96 |
| 113 | 4188 | 1 | 9.50 | 51 | instock | 5.06 |
| 809 | 7164 | 0 | 31.00 | 51 | instock | 16.02 |
| 772 | 6898 | 0 | 30.00 | 51 | instock | 14.88 |
| 88 | 4159 | 1 | 9.30 | 51 | instock | 4.90 |
| 605 | 5777 | 1 | 5.70 | 51 | instock | 3.03 |
| 684 | 6093 | 1 | 12.60 | 51 | instock | 6.71 |
| 201 | 4306 | 1 | 10.70 | 52 | instock | 5.31 |
| 799 | 7088 | 0 | 20.00 | 53 | instock | 10.44 |
| 390 | 4863 | 1 | 8.20 | 54 | instock | 4.11 |
| 777 | 6903 | 0 | 27.00 | 54 | instock | 14.23 |
| 817 | 7196 | 0 | 31.00 | 55 | instock | 31.20 |
| 730 | 6569 | 1 | 29.00 | 58 | instock | 15.28 |
| 541 | 5560 | 0 | 47.00 | 62 | instock | 25.50 |
| 181 | 4275 | 1 | 14.90 | 62 | instock | 7.78 |
| 700 | 6129 | 1 | 5.20 | 68 | instock | 2.74 |
| 77 | 4148 | 1 | 37.50 | 71 | instock | 21.88 |
| 204 | 4336 | 1 | 35.50 | 73 | instock | 21.12 |
| 126 | 4203 | 1 | 9.90 | 74 | instock | 5.01 |
| 478 | 5047 | 1 | 22.50 | 76 | instock | 13.78 |
| 477 | 5027 | 1 | 62.10 | 79 | instock | 38.04 |
| 213 | 4358 | 1 | 77.00 | 81 | instock | 47.16 |
| 211 | 4356 | 1 | 51.60 | 81 | instock | 31.00 |
| 75 | 4146 | 1 | 29.50 | 86 | instock | 17.55 |
| 74 | 4144 | 1 | 49.00 | 91 | instock | 27.73 |
| 210 | 4355 | 1 | 12.65 | 97 | instock | 77.48 |
| 635 | 5892 | 1 | 191.30 | 98 | instock | 116.06 |
| 448 | 4970 | 1 | 49.50 | 100 | instock | 28.59 |
| 76 | 4147 | 1 | 33.00 | 100 | instock | 18.48 |
| 78 | 4149 | 1 | 69.00 | 101 | instock | 40.25 |
| 476 | 5026 | 1 | 86.80 | 101 | instock | 50.13 |
| 474 | 5024 | 1 | 45.00 | 103 | instock | 27.04 |
| 214 | 4359 | 1 | 85.60 | 112 | instock | 51.93 |
| 212 | 4357 | 1 | 39.00 | 115 | instock | 22.30 |
| 393 | 4867 | 1 | 9.90 | 121 | instock | 4.86 |
| 72 | 4141 | 1 | 39.00 | 123 | instock | 24.86 |
| 79 | 4150 | 1 | 59.00 | 123 | instock | 35.45 |
| 206 | 4348 | 1 | 59.00 | 125 | instock | 34.76 |
| 595 | 5761 | 1 | 19.50 | 125 | instock | 12.07 |
| 73 | 4142 | 1 | 53.00 | 125 | instock | 32.15 |
| 209 | 4353 | 1 | 79.50 | 127 | instock | 45.91 |
| 475 | 5025 | 1 | 112.00 | 136 | instock | 68.60 |
| 697 | 6126 | 1 | 135.00 | 138 | instock | 80.33 |
| 203 | 4334 | 1 | 49.00 | 142 | instock | 30.01 |
| 205 | 4337 | 1 | 83.00 | 145 | instock | 48.90 |
| 207 | 4350 | 1 | 79.50 | 145 | instock | 47.30 |
#Fusion des fichiers df_erp et df_liaison
df_erp_liaison = pd.merge(df_erp, df_liaison, on="product_id", how="inner")
df_erp_liaison.shape
(825, 7)
#Y a t-il des lignes ne "matchant" entre les 2 fichiers?
#Ce sont des produits qui ne sont pas sur le site web
df_erp_liaison.head(len(df_erp_liaison))
| product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | id_web | |
|---|---|---|---|---|---|---|---|
| 0 | 3847 | 1 | 24.20 | 16 | instock | 12.88 | 15298 |
| 1 | 3849 | 1 | 34.30 | 10 | instock | 17.54 | 15296 |
| 2 | 3850 | 1 | 20.80 | 0 | outofstock | 10.64 | 15300 |
| 3 | 4032 | 1 | 14.10 | 26 | instock | 6.92 | 19814 |
| 4 | 4039 | 1 | 46.00 | 3 | outofstock | 23.77 | 19815 |
| 5 | 4040 | 1 | 34.30 | 12 | instock | 18.25 | 15303 |
| 6 | 4041 | 1 | 32.70 | 12 | instock | 17.57 | 14975 |
| 7 | 4042 | 1 | 31.20 | 15 | instock | 15.48 | 16042 |
| 8 | 4043 | 1 | 60.00 | 0 | outofstock | 29.45 | 14980 |
| 9 | 4045 | 1 | 42.60 | 5 | instock | 22.01 | 16041 |
| 10 | 4046 | 1 | 80.00 | 2 | instock | 40.92 | 15269 |
| 11 | 4047 | 1 | 18.30 | 0 | outofstock | 9.93 | 14977 |
| 12 | 4048 | 1 | 22.80 | 24 | instock | 11.78 | 16044 |
| 13 | 4049 | 1 | 19.30 | 25 | instock | 10.27 | 16043 |
| 14 | 4050 | 1 | 21.80 | 42 | instock | 11.26 | 16449 |
| 15 | 4051 | 1 | 7.70 | 0 | outofstock | 4.14 | 16045 |
| 16 | 4052 | 1 | 33.70 | 0 | outofstock | 18.11 | 16030 |
| 17 | 4053 | 1 | 44.30 | 7 | instock | 22.20 | 13127 |
| 18 | 4054 | 1 | 71.60 | 6 | instock | 38.47 | 19816 |
| 19 | 4055 | 0 | 86.10 | 0 | outofstock | 37.88 | NaN |
| 20 | 4056 | 1 | 12.70 | 38 | instock | 6.36 | 16029 |
| 21 | 4057 | 1 | 8.70 | 29 | instock | 4.36 | 16039 |
| 22 | 4058 | 1 | 8.70 | 39 | instock | 4.72 | 16318 |
| 23 | 4059 | 1 | 8.70 | 34 | instock | 4.32 | 16275 |
| 24 | 4060 | 1 | 11.90 | 29 | instock | 6.33 | 16498 |
| 25 | 4062 | 1 | 11.90 | 30 | instock | 6.27 | 16320 |
| 26 | 4063 | 1 | 14.50 | 33 | instock | 7.19 | 16319 |
| 27 | 4064 | 1 | 14.40 | 32 | instock | 7.66 | 15966 |
| 28 | 4065 | 1 | 19.50 | 0 | outofstock | 9.67 | 15022 |
| 29 | 4066 | 1 | 20.80 | 27 | instock | 10.42 | 15967 |
| 30 | 4067 | 1 | 22.00 | 22 | instock | 11.37 | 15490 |
| 31 | 4068 | 1 | 16.60 | 25 | instock | 8.92 | 16416 |
| 32 | 4069 | 1 | 60.00 | 4 | instock | 30.07 | 11862 |
| 33 | 4070 | 1 | 23.40 | 32 | instock | 12.21 | 15444 |
| 34 | 4071 | 1 | 33.20 | 19 | instock | 17.15 | 15953 |
| 35 | 4072 | 1 | 32.00 | 8 | instock | 15.71 | 12045 |
| 36 | 4073 | 1 | 77.80 | 8 | instock | 40.60 | 13074 |
| 37 | 4074 | 1 | 12.70 | 30 | instock | 6.76 | 15941 |
| 38 | 4075 | 1 | 14.70 | 35 | instock | 7.97 | 16069 |
| 39 | 4076 | 1 | 14.05 | 32 | instock | 6.90 | 13072 |
| 40 | 4077 | 1 | 22.90 | 34 | instock | 11.95 | 15440 |
| 41 | 4078 | 1 | 44.00 | 8 | instock | 22.28 | 13435 |
| 42 | 4079 | 1 | 37.00 | 0 | outofstock | 19.50 | 13078 |
| 43 | 4081 | 1 | 39.00 | 6 | instock | 19.14 | 13117 |
| 44 | 4083 | 1 | 17.00 | 21 | instock | 8.78 | 16296 |
| 45 | 4084 | 1 | 23.20 | 23 | instock | 11.63 | 16014 |
| 46 | 4085 | 1 | 19.00 | 27 | instock | 9.82 | 16462 |
| 47 | 4086 | 1 | 16.40 | 30 | instock | 8.13 | 16013 |
| 48 | 4087 | 1 | 14.40 | 15 | instock | 7.81 | 16180 |
| 49 | 4090 | 0 | 73.00 | 0 | outofstock | 33.79 | NaN |
| 50 | 4092 | 0 | 47.00 | 0 | outofstock | 25.25 | NaN |
| 51 | 4094 | 1 | 13.70 | 20 | instock | 7.15 | 15676 |
| 52 | 4095 | 1 | 12.60 | 42 | instock | 6.31 | 16120 |
| 53 | 4096 | 1 | 22.80 | 18 | instock | 11.54 | 15564 |
| 54 | 4097 | 1 | 12.80 | 35 | instock | 6.48 | 15675 |
| 55 | 4098 | 1 | 22.10 | 17 | instock | 10.96 | 15378 |
| 56 | 4099 | 1 | 12.80 | 40 | instock | 6.41 | 15813 |
| 57 | 4100 | 1 | 15.80 | 0 | outofstock | 8.57 | 13416 |
| 58 | 4101 | 1 | 15.80 | 21 | instock | 8.33 | 14905 |
| 59 | 4102 | 1 | 16.30 | 16 | instock | 8.00 | 15767 |
| 60 | 4103 | 1 | 16.30 | 30 | instock | 8.00 | 16505 |
| 61 | 4104 | 1 | 9.70 | 35 | instock | 5.11 | 15683 |
| 62 | 4105 | 1 | 6.80 | 45 | instock | 3.51 | 16504 |
| 63 | 4106 | 1 | 12.60 | 24 | instock | 6.64 | 15787 |
| 64 | 4107 | 1 | 35.00 | 8 | instock | 17.54 | 14800 |
| 65 | 4108 | 1 | 31.70 | 13 | instock | 16.54 | 15353 |
| 66 | 4115 | 1 | 100.00 | 12 | instock | 52.70 | 15382 |
| 67 | 4130 | 1 | 23.00 | 16 | instock | 12.48 | 15339 |
| 68 | 4132 | 1 | 88.40 | 7 | instock | 44.30 | 11668 |
| 69 | 4137 | 1 | 29.80 | 18 | instock | 15.86 | 13209 |
| 70 | 4138 | 1 | 25.70 | 0 | outofstock | 13.01 | 15341 |
| 71 | 4139 | 1 | 77.40 | 1 | instock | 39.59 | 13217 |
| 72 | 4141 | 1 | 39.00 | 123 | instock | 24.86 | 304 |
| 73 | 4142 | 1 | 53.00 | 125 | instock | 32.15 | 11641 |
| 74 | 4144 | 1 | 49.00 | 91 | instock | 27.73 | 1662 |
| 75 | 4146 | 1 | 29.50 | 86 | instock | 17.55 | 1360 |
| 76 | 4147 | 1 | 33.00 | 100 | instock | 18.48 | 15648 |
| 77 | 4148 | 1 | 37.50 | 71 | instock | 21.88 | 1364 |
| 78 | 4149 | 1 | 69.00 | 101 | instock | 40.25 | 7086 |
| 79 | 4150 | 1 | 59.00 | 123 | instock | 35.45 | 1366 |
| 80 | 4151 | 1 | 13.70 | 23 | instock | 7.36 | 15140 |
| 81 | 4152 | 1 | 19.20 | 14 | instock | 9.52 | 16238 |
| 82 | 4153 | 1 | 29.00 | 30 | instock | 15.13 | 16237 |
| 83 | 4154 | 1 | 9.80 | 31 | instock | 4.91 | 15141 |
| 84 | 4155 | 1 | 14.50 | 33 | instock | 7.27 | 14944 |
| 85 | 4156 | 1 | 20.35 | 44 | instock | 10.30 | 14941 |
| 86 | 4157 | 1 | 12.00 | 36 | instock | 6.45 | 14751 |
| 87 | 4158 | 1 | 18.50 | 36 | instock | 9.94 | 16093 |
| 88 | 4159 | 1 | 9.30 | 51 | instock | 4.90 | 15668 |
| 89 | 4160 | 1 | 9.30 | 36 | instock | 4.85 | 15373 |
| 90 | 4161 | 1 | 11.60 | 36 | instock | 5.81 | 15375 |
| 91 | 4162 | 1 | 14.30 | 31 | instock | 7.02 | 14474 |
| 92 | 4163 | 1 | 10.80 | 26 | instock | 5.80 | 15482 |
| 93 | 4164 | 1 | 7.60 | 28 | instock | 4.04 | 13453 |
| 94 | 4165 | 1 | 12.00 | 26 | instock | 5.95 | 15075 |
| 95 | 4166 | 1 | 20.50 | 20 | instock | 10.27 | 16124 |
| 96 | 4167 | 1 | 14.30 | 16 | instock | 7.24 | 15785 |
| 97 | 4168 | 1 | 18.20 | 21 | instock | 9.40 | 15784 |
| 98 | 4170 | 1 | 9.00 | 28 | instock | 4.51 | 15786 |
| 99 | 4171 | 1 | 7.80 | 32 | instock | 4.15 | 14332 |
| 100 | 4172 | 1 | 5.70 | 31 | instock | 2.95 | 16210 |
| 101 | 4173 | 1 | 5.70 | 49 | instock | 2.97 | 16211 |
| 102 | 4174 | 1 | 5.70 | 43 | instock | 2.92 | 16209 |
| 103 | 4176 | 1 | 13.50 | 18 | instock | 6.63 | 15629 |
| 104 | 4177 | 1 | 13.50 | 28 | instock | 7.11 | 15583 |
| 105 | 4178 | 1 | 11.50 | 21 | instock | 6.18 | 16160 |
| 106 | 4179 | 1 | 24.00 | 0 | outofstock | 13.02 | 16166 |
| 107 | 4180 | 1 | 24.00 | 19 | instock | 12.28 | 15783 |
| 108 | 4181 | 1 | 11.90 | 43 | instock | 6.21 | 16560 |
| 109 | 4182 | 1 | 16.70 | 43 | instock | 8.46 | 15747 |
| 110 | 4183 | 1 | 21.40 | 23 | instock | 10.61 | 15746 |
| 111 | 4186 | 1 | 16.60 | 29 | instock | 9.01 | 16190 |
| 112 | 4187 | 1 | 13.30 | 26 | instock | 6.67 | 16189 |
| 113 | 4188 | 1 | 9.50 | 51 | instock | 5.06 | 16265 |
| 114 | 4190 | 1 | 12.10 | 27 | instock | 6.13 | 16191 |
| 115 | 4191 | 1 | 9.30 | 30 | instock | 4.76 | 16263 |
| 116 | 4192 | 1 | 17.80 | 32 | instock | 8.92 | 15605 |
| 117 | 4193 | 1 | 13.50 | 34 | instock | 6.91 | 16529 |
| 118 | 4194 | 1 | 10.80 | 29 | instock | 5.58 | 15441 |
| 119 | 4195 | 0 | 14.10 | 0 | outofstock | 7.36 | NaN |
| 120 | 4196 | 1 | 27.20 | 0 | outofstock | 14.05 | 13032 |
| 121 | 4197 | 1 | 9.40 | 32 | instock | 5.10 | 16256 |
| 122 | 4198 | 1 | 5.80 | 0 | outofstock | 2.97 | 16322 |
| 123 | 4200 | 0 | 5.80 | 33 | instock | 3.12 | 16295 |
| 124 | 4201 | 1 | 38.00 | 11 | instock | 19.24 | 15656 |
| 125 | 4202 | 1 | 38.00 | 6 | instock | 19.63 | 15655 |
| 126 | 4203 | 1 | 9.90 | 74 | instock | 5.01 | 15415 |
| 127 | 4204 | 1 | 11.30 | 50 | instock | 5.96 | 15414 |
| 128 | 4205 | 1 | 23.00 | 12 | instock | 11.65 | 15413 |
| 129 | 4207 | 1 | 6.70 | 30 | instock | 3.63 | 16023 |
| 130 | 4208 | 1 | 7.60 | 35 | instock | 3.77 | 16024 |
| 131 | 4209 | 0 | 73.50 | 0 | outofstock | 33.01 | NaN |
| 132 | 4210 | 1 | 79.80 | 4 | instock | 39.17 | 15720 |
| 133 | 4211 | 1 | 48.50 | 5 | instock | 25.56 | 15714 |
| 134 | 4212 | 1 | 39.80 | 12 | instock | 21.39 | 15717 |
| 135 | 4213 | 1 | 58.80 | 10 | instock | 29.16 | 15718 |
| 136 | 4215 | 1 | 26.50 | 20 | instock | 13.97 | 15480 |
| 137 | 4216 | 1 | 13.40 | 35 | instock | 7.20 | 15213 |
| 138 | 4217 | 1 | 17.10 | 12 | instock | 9.28 | 15672 |
| 139 | 4219 | 1 | 16.70 | 25 | instock | 8.97 | 12599 |
| 140 | 4220 | 1 | 11.60 | 48 | instock | 5.75 | 15758 |
| 141 | 4221 | 1 | 12.80 | 42 | instock | 6.48 | 15829 |
| 142 | 4222 | 1 | 8.90 | 45 | instock | 4.74 | 15759 |
| 143 | 4223 | 1 | 9.70 | 42 | instock | 4.81 | 16585 |
| 144 | 4224 | 1 | 17.20 | 21 | instock | 8.53 | 15306 |
| 145 | 4225 | 1 | 16.90 | 27 | instock | 9.08 | 16497 |
| 146 | 4227 | 1 | 12.60 | 24 | instock | 6.77 | 15261 |
| 147 | 4228 | 1 | 29.90 | 30 | instock | 16.07 | 12657 |
| 148 | 4229 | 1 | 9.60 | 28 | instock | 4.96 | 15403 |
| 149 | 4231 | 1 | 11.10 | 22 | instock | 5.85 | 15461 |
| 150 | 4232 | 1 | 11.10 | 37 | instock | 5.62 | 16269 |
| 151 | 4233 | 0 | 20.00 | 0 | outofstock | 10.33 | NaN |
| 152 | 4235 | 1 | 17.10 | 41 | instock | 9.01 | 13905 |
| 153 | 4239 | 1 | 28.00 | 27 | instock | 14.76 | 16567 |
| 154 | 4240 | 1 | 28.00 | 29 | instock | 14.47 | 15436 |
| 155 | 4241 | 1 | 8.90 | 0 | outofstock | 4.37 | 14725 |
| 156 | 4242 | 1 | 8.60 | 30 | instock | 4.22 | 15310 |
| 157 | 4244 | 1 | 13.50 | 39 | instock | 6.63 | 15770 |
| 158 | 4245 | 1 | 8.90 | 27 | instock | 4.69 | 16097 |
| 159 | 4246 | 1 | 15.30 | 29 | instock | 8.14 | 15428 |
| 160 | 4248 | 1 | 14.80 | 38 | instock | 7.49 | 15033 |
| 161 | 4250 | 1 | 19.50 | 24 | instock | 9.97 | 16317 |
| 162 | 4251 | 1 | 14.10 | 31 | instock | 7.65 | 15032 |
| 163 | 4253 | 1 | 59.60 | 5 | instock | 30.18 | 6616 |
| 164 | 4254 | 1 | 26.90 | 20 | instock | 14.59 | 12203 |
| 165 | 4256 | 1 | 24.40 | 0 | outofstock | 12.61 | 14253 |
| 166 | 4257 | 1 | 31.70 | 16 | instock | 17.20 | 12476 |
| 167 | 4258 | 1 | 32.10 | 12 | instock | 17.25 | 14485 |
| 168 | 4260 | 1 | 12.20 | 31 | instock | 6.37 | 14945 |
| 169 | 4261 | 1 | 9.90 | 48 | instock | 5.01 | 15662 |
| 170 | 4262 | 1 | 15.80 | 43 | instock | 8.33 | 15663 |
| 171 | 4263 | 1 | 15.80 | 18 | instock | 8.49 | 15664 |
| 172 | 4264 | 1 | 17.80 | 16 | instock | 9.20 | 15665 |
| 173 | 4265 | 1 | 9.60 | 27 | instock | 4.81 | 15136 |
| 174 | 4267 | 1 | 19.00 | 26 | instock | 9.33 | 16537 |
| 175 | 4268 | 1 | 15.20 | 15 | instock | 7.54 | 16307 |
| 176 | 4269 | 1 | 10.20 | 28 | instock | 5.32 | 16244 |
| 177 | 4270 | 1 | 15.50 | 22 | instock | 8.25 | 15839 |
| 178 | 4271 | 1 | 16.60 | 23 | instock | 8.32 | 13460 |
| 179 | 4272 | 1 | 9.20 | 26 | instock | 4.85 | 13089 |
| 180 | 4274 | 1 | 12.90 | 0 | outofstock | 6.33 | 12942 |
| 181 | 4275 | 1 | 14.90 | 62 | instock | 7.78 | 14864 |
| 182 | 4276 | 1 | 17.60 | 17 | instock | 9.46 | 14527 |
| 183 | 4277 | 1 | 24.80 | 28 | instock | 12.69 | 14865 |
| 184 | 4278 | 0 | 21.50 | 0 | outofstock | 10.78 | NaN |
| 185 | 4279 | 0 | 10.80 | 0 | outofstock | 5.64 | NaN |
| 186 | 4280 | 1 | 18.90 | 37 | instock | 9.57 | 15690 |
| 187 | 4281 | 1 | 11.60 | 30 | instock | 5.69 | 16330 |
| 188 | 4283 | 1 | 27.00 | 0 | outofstock | 13.25 | 16154 |
| 189 | 4285 | 1 | 41.00 | 5 | instock | 22.03 | 16153 |
| 190 | 4286 | 1 | 69.80 | 6 | instock | 36.06 | 16066 |
| 191 | 4287 | 1 | 38.60 | 8 | instock | 20.34 | 16065 |
| 192 | 4288 | 1 | 26.70 | 26 | instock | 14.48 | 15292 |
| 193 | 4289 | 0 | 22.80 | 0 | outofstock | 11.90 | 13771 |
| 194 | 4297 | 1 | 19.00 | 33 | instock | 10.31 | 16246 |
| 195 | 4298 | 1 | 23.20 | 17 | instock | 11.99 | 16501 |
| 196 | 4299 | 1 | 39.10 | 10 | instock | 19.19 | 16578 |
| 197 | 4300 | 1 | 44.00 | 2 | instock | 23.42 | 15567 |
| 198 | 4301 | 1 | 17.50 | 19 | instock | 9.49 | 16553 |
| 199 | 4303 | 1 | 30.00 | 15 | instock | 15.19 | 13172 |
| 200 | 4304 | 1 | 8.10 | 45 | instock | 4.19 | 15120 |
| 201 | 4306 | 1 | 10.70 | 52 | instock | 5.31 | 15949 |
| 202 | 4307 | 1 | 10.90 | 37 | instock | 5.80 | 15946 |
| 203 | 4334 | 1 | 49.00 | 142 | instock | 30.01 | 7818 |
| 204 | 4336 | 1 | 35.50 | 73 | instock | 21.12 | 13599 |
| 205 | 4337 | 1 | 83.00 | 145 | instock | 48.90 | 4679 |
| 206 | 4348 | 1 | 59.00 | 125 | instock | 34.76 | 12586 |
| 207 | 4350 | 1 | 79.50 | 145 | instock | 47.30 | 12588 |
| 208 | 4352 | 1 | 225.00 | 0 | outofstock | 137.81 | 15940 |
| 209 | 4353 | 1 | 79.50 | 127 | instock | 45.91 | 12587 |
| 210 | 4355 | 1 | 12.65 | 97 | instock | 77.48 | 12589 |
| 211 | 4356 | 1 | 51.60 | 81 | instock | 31.00 | 12585 |
| 212 | 4357 | 1 | 39.00 | 115 | instock | 22.30 | 9562 |
| 213 | 4358 | 1 | 77.00 | 81 | instock | 47.16 | 13854 |
| 214 | 4359 | 1 | 85.60 | 112 | instock | 51.93 | 13853 |
| 215 | 4364 | 1 | 49.50 | 4 | instock | 23.60 | 11585 |
| 216 | 4391 | 1 | 49.50 | 7 | instock | 22.01 | 11467 |
| 217 | 4392 | 1 | 49.50 | 3 | instock | 22.01 | 11586 |
| 218 | 4393 | 1 | 57.00 | 5 | instock | 26.13 | 13765 |
| 219 | 4394 | 1 | 59.80 | 3 | instock | 27.96 | 13766 |
| 220 | 4395 | 1 | 27.50 | 9 | instock | 13.11 | 11587 |
| 221 | 4396 | 1 | 62.00 | 0 | outofstock | 28.42 | 9636 |
| 222 | 4397 | 1 | 59.00 | 5 | instock | 27.31 | 12639 |
| 223 | 4398 | 1 | 59.00 | 10 | instock | 28.39 | 12641 |
| 224 | 4399 | 1 | 59.00 | 10 | instock | 28.12 | 12640 |
| 225 | 4400 | 1 | 44.00 | 12 | instock | 21.18 | 14768 |
| 226 | 4401 | 1 | 62.50 | 5 | instock | 27.21 | 3506 |
| 227 | 4402 | 1 | 176.00 | 11 | instock | 78.25 | 3510 |
| 228 | 4404 | 1 | 108.50 | 17 | instock | 52.22 | 3507 |
| 229 | 4405 | 1 | 68.10 | 15 | instock | 32.46 | 13230 |
| 230 | 4406 | 1 | 157.00 | 12 | instock | 69.08 | 7819 |
| 231 | 4407 | 1 | 104.00 | 14 | instock | 46.71 | 3509 |
| 232 | 4558 | 1 | 28.10 | 23 | instock | 15.24 | 15426 |
| 233 | 4564 | 1 | 21.70 | 28 | instock | 11.66 | 15621 |
| 234 | 4565 | 0 | 30.50 | 3 | instock | 15.92 | NaN |
| 235 | 4566 | 1 | 28.50 | 19 | instock | 15.31 | 15457 |
| 236 | 4568 | 0 | 21.50 | 0 | outofstock | 11.22 | 15065 |
| 237 | 4573 | 1 | 67.20 | 12 | instock | 36.46 | 13604 |
| 238 | 4577 | 0 | 49.00 | 1 | instock | 24.05 | NaN |
| 239 | 4578 | 0 | 40.00 | 3 | instock | 20.05 | NaN |
| 240 | 4582 | 1 | 109.60 | 18 | instock | 53.80 | 12857 |
| 241 | 4584 | 0 | 32.30 | 0 | outofstock | 17.36 | 14785 |
| 242 | 4594 | 1 | 144.00 | 0 | outofstock | 87.36 | NaN |
| 243 | 4596 | 1 | 43.90 | 7 | instock | 22.91 | 15476 |
| 244 | 4597 | 1 | 61.60 | 7 | instock | 33.42 | 14000 |
| 245 | 4598 | 1 | 41.80 | 5 | instock | 21.38 | 15478 |
| 246 | 4599 | 0 | 36.90 | 0 | outofstock | 18.30 | NaN |
| 247 | 4600 | 1 | 26.50 | 15 | instock | 13.14 | 15475 |
| 248 | 4601 | 1 | 16.10 | 24 | instock | 8.57 | 16151 |
| 249 | 4602 | 1 | 31.50 | 8 | instock | 16.93 | 15659 |
| 250 | 4603 | 1 | 31.50 | 8 | instock | 15.95 | 15147 |
| 251 | 4604 | 1 | 49.00 | 5 | instock | 25.06 | 15660 |
| 252 | 4605 | 1 | 32.20 | 9 | instock | 16.47 | 15148 |
| 253 | 4606 | 1 | 50.10 | 0 | outofstock | 24.59 | 15149 |
| 254 | 4607 | 1 | 13.40 | 41 | instock | 7.13 | 15146 |
| 255 | 4609 | 1 | 11.80 | 40 | instock | 6.04 | 15145 |
| 256 | 4610 | 1 | 13.10 | 34 | instock | 6.50 | 15801 |
| 257 | 4611 | 1 | 26.20 | 29 | instock | 13.67 | 15452 |
| 258 | 4612 | 1 | 20.60 | 0 | outofstock | 10.22 | 15038 |
| 259 | 4613 | 1 | 16.90 | 23 | instock | 8.38 | 15030 |
| 260 | 4614 | 1 | 19.00 | 23 | instock | 10.31 | 15875 |
| 261 | 4615 | 1 | 24.00 | 16 | instock | 12.28 | 16186 |
| 262 | 4616 | 1 | 57.00 | 10 | instock | 27.98 | 14371 |
| 263 | 4617 | 1 | 67.50 | 6 | instock | 35.57 | 10459 |
| 264 | 4618 | 1 | 30.60 | 0 | outofstock | 16.44 | 14372 |
| 265 | 4619 | 1 | 59.00 | 8 | instock | 32.01 | 11049 |
| 266 | 4620 | 1 | 11.90 | 28 | instock | 6.03 | 15850 |
| 267 | 4621 | 1 | 16.50 | 36 | instock | 8.53 | 15849 |
| 268 | 4625 | 1 | 52.40 | 4 | instock | 28.16 | 812 |
| 269 | 4626 | 1 | 52.90 | 4 | instock | 27.88 | 807 |
| 270 | 4627 | 1 | 58.30 | 2 | instock | 28.62 | 805 |
| 271 | 4628 | 1 | 39.60 | 8 | instock | 21.07 | 802 |
| 272 | 4629 | 1 | 52.40 | 7 | instock | 27.07 | 2534 |
| 273 | 4630 | 1 | 62.40 | 1 | instock | 33.21 | 793 |
| 274 | 4631 | 1 | 76.80 | 1 | instock | 38.49 | 791 |
| 275 | 4632 | 1 | 50.00 | 9 | instock | 26.87 | 2179 |
| 276 | 4633 | 1 | 52.40 | 5 | instock | 27.61 | 804 |
| 277 | 4634 | 1 | 41.00 | 11 | instock | 20.12 | 41 |
| 278 | 4635 | 1 | 62.40 | 12 | instock | 31.92 | 798 |
| 279 | 4636 | 1 | 50.00 | 0 | outofstock | 25.58 | 2361 |
| 280 | 4646 | 1 | 21.50 | 27 | instock | 10.89 | 15848 |
| 281 | 4647 | 1 | 28.50 | 45 | instock | 14.14 | 16525 |
| 282 | 4648 | 1 | 24.30 | 22 | instock | 12.68 | 16262 |
| 283 | 4649 | 1 | 16.50 | 18 | instock | 8.10 | 16261 |
| 284 | 4650 | 1 | 25.30 | 20 | instock | 13.07 | 15206 |
| 285 | 4651 | 1 | 49.00 | 7 | instock | 24.81 | 11849 |
| 286 | 4653 | 1 | 36.20 | 8 | instock | 19.64 | 13515 |
| 287 | 4654 | 1 | 33.40 | 14 | instock | 17.43 | 13514 |
| 288 | 4655 | 1 | 40.20 | 7 | instock | 20.35 | 13516 |
| 289 | 4656 | 1 | 43.00 | 13 | instock | 22.88 | 10814 |
| 290 | 4657 | 1 | 43.00 | 3 | instock | 21.55 | 11847 |
| 291 | 4658 | 1 | 48.80 | 4 | instock | 25.97 | 13517 |
| 292 | 4659 | 0 | 23.60 | 0 | outofstock | 12.56 | NaN |
| 293 | 4662 | 1 | 20.80 | 13 | instock | 10.96 | 16081 |
| 294 | 4664 | 1 | 16.40 | 20 | instock | 8.39 | 15402 |
| 295 | 4665 | 1 | 14.40 | 39 | instock | 7.59 | 15404 |
| 296 | 4666 | 1 | 21.00 | 24 | instock | 11.18 | 13647 |
| 297 | 4668 | 1 | 12.30 | 21 | instock | 6.23 | 14657 |
| 298 | 4669 | 1 | 20.20 | 21 | instock | 10.65 | 16053 |
| 299 | 4670 | 1 | 17.00 | 30 | instock | 8.96 | 15525 |
| 300 | 4671 | 1 | 21.90 | 28 | instock | 11.32 | 15527 |
| 301 | 4672 | 1 | 17.80 | 36 | instock | 9.56 | 14676 |
| 302 | 4673 | 1 | 19.80 | 17 | instock | 10.33 | 16057 |
| 303 | 4674 | 1 | 19.00 | 24 | instock | 9.91 | 16056 |
| 304 | 4675 | 1 | 10.70 | 31 | instock | 5.64 | 13762 |
| 305 | 4676 | 1 | 12.90 | 28 | instock | 6.93 | 15280 |
| 306 | 4677 | 1 | 9.50 | 25 | instock | 4.91 | 15282 |
| 307 | 4678 | 1 | 29.80 | 31 | instock | 15.09 | 15281 |
| 308 | 4679 | 1 | 13.20 | 32 | instock | 6.55 | 15283 |
| 309 | 4680 | 1 | 6.30 | 35 | instock | 3.29 | 15934 |
| 310 | 4681 | 1 | 7.10 | 33 | instock | 3.56 | 15933 |
| 311 | 4682 | 1 | 9.10 | 34 | instock | 4.84 | 15575 |
| 312 | 4683 | 1 | 9.10 | 43 | instock | 4.84 | 16239 |
| 313 | 4684 | 1 | 18.10 | 28 | instock | 9.45 | 14451 |
| 314 | 4686 | 1 | 14.00 | 23 | instock | 7.31 | 16324 |
| 315 | 4687 | 1 | 30.10 | 10 | instock | 15.40 | 15582 |
| 316 | 4689 | 1 | 12.80 | 38 | instock | 6.68 | 13736 |
| 317 | 4690 | 1 | 12.80 | 23 | instock | 6.94 | 13659 |
| 318 | 4692 | 0 | 12.00 | 48 | instock | 6.39 | NaN |
| 319 | 4693 | 0 | 18.50 | 0 | outofstock | 9.75 | NaN |
| 320 | 4697 | 0 | 34.50 | 1 | instock | 18.72 | NaN |
| 321 | 4698 | 0 | 20.50 | 0 | outofstock | 10.17 | NaN |
| 322 | 4702 | 0 | 23.80 | 0 | outofstock | 11.93 | NaN |
| 323 | 4703 | 1 | 19.80 | 42 | instock | 9.72 | 15465 |
| 324 | 4704 | 1 | 18.20 | 30 | instock | 9.22 | 15004 |
| 325 | 4705 | 1 | 31.60 | 9 | instock | 17.14 | 14699 |
| 326 | 4706 | 1 | 16.80 | 0 | outofstock | 8.68 | 15349 |
| 327 | 4707 | 1 | 22.80 | 21 | instock | 11.54 | 15466 |
| 328 | 4708 | 1 | 32.60 | 3 | instock | 17.35 | 14700 |
| 329 | 4709 | 1 | 44.00 | 7 | instock | 22.05 | 10775 |
| 330 | 4711 | 1 | 55.40 | 6 | instock | 29.77 | 16119 |
| 331 | 4712 | 1 | 15.80 | 27 | instock | 8.57 | 15667 |
| 332 | 4713 | 1 | 18.40 | 25 | instock | 9.22 | 14746 |
| 333 | 4714 | 1 | 13.30 | 26 | instock | 7.22 | 15361 |
| 334 | 4715 | 1 | 11.10 | 23 | instock | 5.91 | 15196 |
| 335 | 4716 | 1 | 18.60 | 32 | instock | 9.23 | 15657 |
| 336 | 4717 | 1 | 23.40 | 20 | instock | 11.73 | 15658 |
| 337 | 4718 | 1 | 18.20 | 35 | instock | 9.78 | 15670 |
| 338 | 4719 | 1 | 12.50 | 23 | instock | 6.46 | 16527 |
| 339 | 4720 | 1 | 15.90 | 31 | instock | 8.46 | 16513 |
| 340 | 4721 | 0 | 20.20 | 0 | outofstock | 10.54 | NaN |
| 341 | 4722 | 1 | 13.70 | 18 | instock | 6.72 | 15880 |
| 342 | 4723 | 1 | 29.00 | 19 | instock | 15.43 | 15879 |
| 343 | 4725 | 1 | 23.40 | 13 | instock | 12.33 | 16010 |
| 344 | 4726 | 1 | 12.70 | 0 | outofstock | 6.82 | 14950 |
| 345 | 4727 | 1 | 26.00 | 15 | instock | 12.90 | 16540 |
| 346 | 4728 | 1 | 29.50 | 14 | instock | 14.48 | 15729 |
| 347 | 4729 | 1 | 8.60 | 26 | instock | 4.22 | 38 |
| 348 | 4730 | 1 | 14.30 | 31 | instock | 7.24 | 5646 |
| 349 | 4731 | 1 | 22.00 | 42 | instock | 11.03 | 8344 |
| 350 | 4733 | 1 | 16.80 | 38 | instock | 8.42 | 15576 |
| 351 | 4734 | 1 | 15.30 | 27 | instock | 8.22 | 16138 |
| 352 | 4738 | 0 | 13.50 | 3 | instock | 6.77 | NaN |
| 353 | 4739 | 1 | 7.40 | 30 | instock | 3.75 | 14366 |
| 354 | 4740 | 1 | 9.70 | 31 | instock | 5.21 | 13412 |
| 355 | 4741 | 0 | 12.40 | 0 | outofstock | 6.66 | 12601 |
| 356 | 4744 | 0 | 13.80 | 5 | instock | 6.84 | NaN |
| 357 | 4748 | 1 | 14.50 | 35 | instock | 7.42 | 14632 |
| 358 | 4749 | 1 | 11.90 | 38 | instock | 6.46 | 15315 |
| 359 | 4750 | 1 | 16.40 | 24 | instock | 8.30 | 13627 |
| 360 | 4752 | 1 | 27.90 | 23 | instock | 13.69 | 14184 |
| 361 | 4753 | 1 | 12.00 | 23 | instock | 6.51 | 15429 |
| 362 | 4755 | 1 | 7.40 | 47 | instock | 3.98 | 16132 |
| 363 | 4757 | 1 | 26.50 | 21 | instock | 13.01 | 14680 |
| 364 | 4758 | 1 | 24.30 | 35 | instock | 12.93 | 15859 |
| 365 | 4759 | 1 | 16.90 | 26 | instock | 8.30 | 16229 |
| 366 | 4776 | 1 | 6.80 | 42 | instock | 3.48 | 14302 |
| 367 | 4778 | 1 | 13.90 | 20 | instock | 6.89 | 16072 |
| 368 | 4779 | 1 | 7.80 | 36 | instock | 4.07 | 14300 |
| 369 | 4780 | 1 | 13.70 | 32 | instock | 6.72 | 13096 |
| 370 | 4782 | 1 | 9.80 | 19 | instock | 5.01 | 16564 |
| 371 | 4783 | 1 | 29.50 | 16 | instock | 15.85 | 13754 |
| 372 | 4784 | 1 | 28.50 | 21 | instock | 14.28 | 15734 |
| 373 | 4785 | 1 | 10.10 | 20 | instock | 4.96 | 15448 |
| 374 | 4786 | 1 | 12.10 | 32 | instock | 6.56 | 15881 |
| 375 | 4788 | 1 | 12.30 | 10 | instock | 6.29 | 15731 |
| 376 | 4789 | 1 | 11.10 | 27 | instock | 5.96 | 15316 |
| 377 | 4790 | 1 | 11.10 | 22 | instock | 5.62 | 15732 |
| 378 | 4791 | 1 | 13.60 | 27 | instock | 7.38 | 14599 |
| 379 | 4792 | 1 | 21.00 | 29 | instock | 11.28 | 15733 |
| 380 | 4793 | 1 | 18.70 | 15 | instock | 9.37 | 15730 |
| 381 | 4794 | 1 | 41.60 | 14 | instock | 22.14 | 12771 |
| 382 | 4795 | 1 | 12.00 | 32 | instock | 6.08 | 3568 |
| 383 | 4797 | 1 | 78.00 | 5 | instock | 42.32 | 14506 |
| 384 | 4798 | 0 | 12.70 | 0 | outofstock | 6.30 | NaN |
| 385 | 4799 | 1 | 14.90 | 23 | instock | 7.39 | 15811 |
| 386 | 4858 | 1 | 6.50 | 0 | outofstock | 3.19 | 16342 |
| 387 | 4860 | 1 | 8.70 | 29 | instock | 4.63 | 16292 |
| 388 | 4861 | 1 | 8.50 | 36 | instock | 4.17 | 15307 |
| 389 | 4862 | 1 | 9.90 | 35 | instock | 4.86 | 16047 |
| 390 | 4863 | 1 | 8.20 | 54 | instock | 4.11 | 16255 |
| 391 | 4864 | 0 | 8.30 | 0 | outofstock | 9.99 | 15154 |
| 392 | 4865 | 1 | 9.80 | 48 | instock | 5.16 | 16274 |
| 393 | 4867 | 1 | 9.90 | 121 | instock | 4.86 | 16148 |
| 394 | 4869 | 0 | 17.20 | 0 | outofstock | 9.33 | 14360 |
| 395 | 4870 | 1 | 9.30 | 0 | outofstock | 4.81 | 16149 |
| 396 | 4874 | 0 | 14.60 | 0 | outofstock | 7.62 | NaN |
| 397 | 4876 | 1 | 22.80 | 0 | outofstock | 11.90 | 16289 |
| 398 | 4885 | 1 | 18.70 | 0 | instock | 9.66 | 14981 |
| 399 | 4886 | 1 | 28.40 | 14 | instock | 14.53 | 15773 |
| 400 | 4888 | 1 | 27.90 | 17 | instock | 14.85 | 15776 |
| 401 | 4889 | 1 | 25.30 | 16 | instock | 12.55 | 16037 |
| 402 | 4890 | 1 | 17.00 | 19 | instock | 8.78 | 16038 |
| 403 | 4891 | 1 | 27.90 | 8 | instock | 14.70 | 15807 |
| 404 | 4892 | 1 | 20.10 | 30 | instock | 10.90 | 15952 |
| 405 | 4893 | 1 | 27.90 | 21 | instock | 14.99 | 15808 |
| 406 | 4899 | 1 | 21.20 | 18 | instock | 11.17 | 16062 |
| 407 | 4900 | 1 | 20.80 | 11 | instock | 10.75 | 16063 |
| 408 | 4901 | 1 | 41.00 | 17 | instock | 20.76 | 14802 |
| 409 | 4902 | 1 | 46.00 | 15 | instock | 23.53 | 13052 |
| 410 | 4903 | 1 | 102.30 | 12 | instock | 51.80 | 14805 |
| 411 | 4904 | 1 | 137.00 | 9 | instock | 67.95 | 14220 |
| 412 | 4907 | 1 | 22.90 | 32 | instock | 12.42 | 14374 |
| 413 | 4908 | 1 | 53.20 | 7 | instock | 26.11 | 14395 |
| 414 | 4909 | 1 | 25.90 | 14 | instock | 12.85 | 15614 |
| 415 | 4910 | 1 | 17.30 | 23 | instock | 8.76 | 13809 |
| 416 | 4911 | 0 | 23.00 | 0 | outofstock | 12.00 | NaN |
| 417 | 4912 | 1 | 25.90 | 34 | instock | 12.98 | 15612 |
| 418 | 4913 | 1 | 28.00 | 23 | instock | 14.76 | 13814 |
| 419 | 4914 | 1 | 25.90 | 24 | instock | 12.98 | 15613 |
| 420 | 4915 | 1 | 25.90 | 28 | instock | 13.38 | 15615 |
| 421 | 4918 | 1 | 37.20 | 15 | instock | 18.64 | 15533 |
| 422 | 4919 | 1 | 24.40 | 10 | instock | 12.86 | 15531 |
| 423 | 4920 | 1 | 24.40 | 16 | instock | 12.86 | 15530 |
| 424 | 4921 | 0 | 13.80 | 0 | outofstock | 7.13 | 15608 |
| 425 | 4922 | 0 | 21.50 | 0 | outofstock | 10.55 | 15586 |
| 426 | 4923 | 1 | 7.00 | 0 | outofstock | 3.65 | 15928 |
| 427 | 4924 | 1 | 12.80 | 24 | instock | 6.28 | 16276 |
| 428 | 4925 | 1 | 23.20 | 38 | instock | 11.39 | 16277 |
| 429 | 4926 | 1 | 7.90 | 40 | instock | 4.04 | 15456 |
| 430 | 4927 | 1 | 6.50 | 39 | instock | 3.29 | 15425 |
| 431 | 4928 | 1 | 7.90 | 28 | instock | 3.88 | 15047 |
| 432 | 4929 | 1 | 16.70 | 26 | instock | 8.28 | 15927 |
| 433 | 4930 | 1 | 17.50 | 29 | instock | 9.31 | 16155 |
| 434 | 4931 | 1 | 27.80 | 34 | instock | 15.08 | 16280 |
| 435 | 4932 | 1 | 25.70 | 5 | instock | 12.75 | 9937 |
| 436 | 4933 | 1 | 18.40 | 24 | instock | 9.22 | 16281 |
| 437 | 4934 | 1 | 22.20 | 28 | instock | 11.93 | 15554 |
| 438 | 4936 | 1 | 11.10 | 25 | instock | 5.68 | 15106 |
| 439 | 4937 | 1 | 9.90 | 26 | instock | 4.86 | 16283 |
| 440 | 4938 | 1 | 12.50 | 32 | instock | 6.46 | 13379 |
| 441 | 4939 | 1 | 12.90 | 23 | instock | 6.53 | 15338 |
| 442 | 4940 | 1 | 20.50 | 39 | instock | 11.02 | 15337 |
| 443 | 4954 | 1 | 25.00 | 23 | instock | 13.30 | bon-cadeau-25-euros |
| 444 | 4962 | 1 | 11.30 | 23 | instock | 5.55 | 15737 |
| 445 | 4963 | 1 | 7.00 | 41 | instock | 3.44 | 15958 |
| 446 | 4964 | 1 | 12.10 | 23 | instock | 6.50 | 16515 |
| 447 | 4965 | 1 | 7.10 | 24 | instock | 3.67 | 16586 |
| 448 | 4970 | 1 | 49.50 | 100 | instock | 28.59 | 11225 |
| 449 | 4973 | 0 | 10.00 | 0 | outofstock | 4.96 | NaN |
| 450 | 4974 | 1 | 23.00 | 10 | instock | 12.12 | 16004 |
| 451 | 4975 | 1 | 23.70 | 19 | instock | 12.73 | 14756 |
| 452 | 4976 | 1 | 16.45 | 0 | outofstock | 8.07 | 16005 |
| 453 | 4977 | 1 | 16.30 | 31 | instock | 8.84 | 14930 |
| 454 | 4978 | 1 | 18.50 | 23 | instock | 9.46 | 13313 |
| 455 | 4980 | 1 | 26.50 | 18 | instock | 14.10 | 15229 |
| 456 | 4994 | 1 | 78.00 | 11 | instock | 40.70 | 14507 |
| 457 | 4995 | 1 | 78.00 | 6 | instock | 42.32 | 14509 |
| 458 | 4996 | 1 | 78.00 | 6 | instock | 40.70 | 14508 |
| 459 | 5000 | 1 | 27.30 | 26 | instock | 14.53 | 15868 |
| 460 | 5001 | 1 | 217.50 | 18 | instock | 116.87 | 14581 |
| 461 | 5002 | 1 | 64.90 | 4 | instock | 34.54 | 14580 |
| 462 | 5003 | 1 | 48.70 | 4 | instock | 24.16 | 15869 |
| 463 | 5004 | 1 | 59.40 | 4 | instock | 29.77 | 15871 |
| 464 | 5006 | 1 | 48.70 | 5 | instock | 24.91 | 15870 |
| 465 | 5007 | 1 | 105.00 | 15 | instock | 55.88 | 12791 |
| 466 | 5008 | 1 | 105.00 | 12 | instock | 56.42 | 11602 |
| 467 | 5010 | 1 | 55.60 | 6 | instock | 30.16 | 15073 |
| 468 | 5016 | 1 | 9.30 | 40 | instock | 4.81 | 14839 |
| 469 | 5017 | 0 | 8.00 | 0 | outofstock | 4.34 | NaN |
| 470 | 5018 | 0 | 15.40 | 0 | outofstock | 7.72 | 15272 |
| 471 | 5019 | 1 | 19.80 | 45 | instock | 10.43 | 14696 |
| 472 | 5020 | 0 | 10.00 | 0 | outofstock | 5.27 | NaN |
| 473 | 5021 | 0 | 17.10 | 0 | outofstock | 8.92 | 15630 |
| 474 | 5024 | 1 | 45.00 | 103 | instock | 27.04 | 11996 |
| 475 | 5025 | 1 | 112.00 | 136 | instock | 68.60 | 13914 |
| 476 | 5026 | 1 | 86.80 | 101 | instock | 50.13 | 13913 |
| 477 | 5027 | 1 | 62.10 | 79 | instock | 38.04 | 11997 |
| 478 | 5047 | 1 | 22.50 | 76 | instock | 13.78 | 531 |
| 479 | 5056 | 1 | 7.50 | 27 | instock | 3.95 | 13531 |
| 480 | 5061 | 1 | 52.60 | 5 | instock | 27.99 | 15711 |
| 481 | 5062 | 1 | 45.00 | 12 | instock | 23.25 | 15713 |
| 482 | 5063 | 1 | 67.00 | 1 | instock | 33.92 | 15715 |
| 483 | 5067 | 1 | 59.90 | 3 | instock | 30.95 | 15346 |
| 484 | 5068 | 1 | 59.90 | 6 | instock | 32.50 | 15345 |
| 485 | 5069 | 1 | 65.00 | 14 | instock | 35.26 | 15344 |
| 486 | 5070 | 1 | 84.70 | 0 | outofstock | 47.43 | NaN |
| 487 | 5075 | 1 | 43.30 | 0 | outofstock | 21.70 | NaN |
| 488 | 5375 | 1 | 15.20 | 41 | instock | 8.09 | 15755 |
| 489 | 5377 | 1 | 19.00 | 39 | instock | 10.01 | 15677 |
| 490 | 5379 | 1 | 11.10 | 33 | instock | 5.68 | 14561 |
| 491 | 5380 | 1 | 18.00 | 27 | instock | 9.77 | 16022 |
| 492 | 5382 | 1 | 22.80 | 30 | instock | 11.54 | 16011 |
| 493 | 5383 | 1 | 19.50 | 10 | instock | 10.18 | 3383 |
| 494 | 5384 | 1 | 28.80 | 0 | outofstock | 15.18 | 14149 |
| 495 | 5389 | 1 | 16.10 | 23 | instock | 8.32 | 13904 |
| 496 | 5391 | 1 | 24.20 | 34 | instock | 13.00 | 14141 |
| 497 | 5393 | 1 | 35.30 | 7 | instock | 18.06 | 12494 |
| 498 | 5394 | 1 | 10.70 | 29 | instock | 5.25 | 15462 |
| 499 | 5395 | 1 | 12.70 | 24 | instock | 6.82 | 15095 |
| 500 | 5396 | 1 | 17.10 | 14 | instock | 8.48 | 14626 |
| 501 | 5397 | 1 | 24.00 | 24 | instock | 12.40 | 12496 |
| 502 | 5398 | 1 | 39.00 | 8 | instock | 21.16 | 12315 |
| 503 | 5439 | 1 | 13.20 | 46 | instock | 6.68 | 15649 |
| 504 | 5443 | 1 | 23.60 | 32 | instock | 12.56 | 14809 |
| 505 | 5444 | 1 | 15.50 | 40 | instock | 7.69 | 15155 |
| 506 | 5445 | 1 | 16.30 | 18 | instock | 8.00 | 12194 |
| 507 | 5446 | 1 | 16.20 | 28 | instock | 8.29 | 16328 |
| 508 | 5448 | 1 | 7.20 | 42 | instock | 3.76 | 14469 |
| 509 | 5465 | 1 | 54.80 | 12 | instock | 28.60 | 16034 |
| 510 | 5474 | 1 | 42.00 | 11 | instock | 22.57 | 14679 |
| 511 | 5477 | 1 | 19.80 | 18 | instock | 10.43 | 15526 |
| 512 | 5479 | 1 | 10.20 | 38 | instock | 5.16 | 16305 |
| 513 | 5480 | 1 | 10.40 | 23 | instock | 5.21 | 16306 |
| 514 | 5481 | 1 | 11.50 | 25 | instock | 5.64 | 15138 |
| 515 | 5483 | 1 | 17.90 | 31 | instock | 9.71 | 15753 |
| 516 | 5484 | 1 | 21.60 | 25 | instock | 11.61 | 15756 |
| 517 | 5485 | 1 | 33.40 | 14 | instock | 16.57 | 16131 |
| 518 | 5486 | 1 | 49.50 | 9 | instock | 26.09 | 16130 |
| 519 | 5487 | 1 | 43.50 | 0 | outofstock | 23.37 | 16129 |
| 520 | 5488 | 1 | 43.50 | 11 | instock | 22.70 | 14712 |
| 521 | 5491 | 1 | 26.50 | 18 | instock | 13.01 | 15481 |
| 522 | 5504 | 1 | 13.80 | 19 | instock | 6.77 | 16146 |
| 523 | 5505 | 0 | 10.10 | 0 | outofstock | 5.22 | 14648 |
| 524 | 5506 | 1 | 18.20 | 24 | instock | 9.59 | 14192 |
| 525 | 5519 | 1 | 12.90 | 35 | instock | 7.00 | 15860 |
| 526 | 5520 | 1 | 38.60 | 12 | instock | 19.15 | 15863 |
| 527 | 5522 | 1 | 48.40 | 8 | instock | 26.26 | 15861 |
| 528 | 5523 | 1 | 60.40 | 9 | instock | 31.83 | 15862 |
| 529 | 5524 | 1 | 38.60 | 9 | instock | 19.74 | 15864 |
| 530 | 5525 | 1 | 12.00 | 23 | instock | 6.26 | 14819 |
| 531 | 5544 | 1 | 61.60 | 0 | outofstock | 31.51 | 14828 |
| 532 | 5545 | 1 | 65.90 | 13 | instock | 32.35 | 14827 |
| 533 | 5546 | 1 | 15.20 | 18 | instock | 7.93 | 15202 |
| 534 | 5547 | 1 | 24.60 | 16 | instock | 12.71 | 13959 |
| 535 | 5548 | 1 | 48.80 | 5 | instock | 26.47 | 13965 |
| 536 | 5550 | 1 | 34.30 | 8 | instock | 17.90 | 13958 |
| 537 | 5551 | 1 | 36.30 | 6 | instock | 17.82 | 13957 |
| 538 | 5552 | 1 | 57.70 | 5 | instock | 30.11 | 13520 |
| 539 | 5554 | 1 | 38.00 | 13 | instock | 19.83 | 13969 |
| 540 | 5559 | 0 | 27.90 | 3 | instock | 13.98 | 14715 |
| 541 | 5560 | 0 | 47.00 | 62 | instock | 25.50 | NaN |
| 542 | 5561 | 1 | 58.00 | 8 | instock | 30.27 | 19820 |
| 543 | 5563 | 1 | 58.00 | 16 | instock | 29.07 | 19821 |
| 544 | 5564 | 1 | 30.80 | 10 | instock | 16.07 | 15748 |
| 545 | 5565 | 1 | 92.00 | 0 | outofstock | 46.11 | 19822 |
| 546 | 5566 | 1 | 27.50 | 12 | instock | 14.63 | 16192 |
| 547 | 5569 | 0 | 19.90 | 1 | instock | 9.77 | NaN |
| 548 | 5570 | 0 | 22.50 | 0 | outofstock | 11.16 | 14730 |
| 549 | 5573 | 1 | 34.70 | 22 | instock | 17.39 | 14729 |
| 550 | 5574 | 1 | 59.60 | 2 | instock | 30.18 | 8463 |
| 551 | 5580 | 1 | 83.70 | 4 | instock | 41.08 | 13982 |
| 552 | 5608 | 1 | 30.50 | 11 | instock | 15.29 | 15944 |
| 553 | 5609 | 1 | 38.60 | 7 | instock | 20.54 | 15930 |
| 554 | 5610 | 1 | 18.00 | 29 | instock | 9.02 | 14912 |
| 555 | 5611 | 1 | 63.40 | 14 | instock | 33.74 | 15945 |
| 556 | 5612 | 1 | 124.80 | 19 | instock | 66.41 | 14915 |
| 557 | 5613 | 1 | 19.20 | 28 | instock | 10.22 | 14855 |
| 558 | 5614 | 1 | 19.20 | 17 | instock | 9.42 | 14856 |
| 559 | 5615 | 1 | 56.40 | 5 | instock | 30.60 | 15923 |
| 560 | 5616 | 1 | 38.40 | 7 | instock | 19.05 | 14845 |
| 561 | 5617 | 1 | 27.80 | 0 | outofstock | 14.65 | 14844 |
| 562 | 5618 | 1 | 71.30 | 5 | instock | 36.84 | 15921 |
| 563 | 5619 | 1 | 71.30 | 10 | instock | 38.31 | 15922 |
| 564 | 5628 | 1 | 25.00 | 15 | instock | 12.79 | 12366 |
| 565 | 5629 | 1 | 10.30 | 28 | instock | 5.06 | 8365 |
| 566 | 5630 | 1 | 28.00 | 23 | instock | 14.61 | 12365 |
| 567 | 5690 | 1 | 44.60 | 9 | instock | 21.89 | 14647 |
| 568 | 5693 | 1 | 13.00 | 29 | instock | 6.52 | 15812 |
| 569 | 5694 | 1 | 12.70 | 25 | instock | 6.23 | 14661 |
| 570 | 5695 | 1 | 6.50 | 33 | instock | 3.53 | 16304 |
| 571 | 5696 | 1 | 17.50 | 24 | instock | 9.49 | 15797 |
| 572 | 5697 | 1 | 29.90 | 14 | instock | 15.29 | 16094 |
| 573 | 5700 | 1 | 44.50 | 0 | outofstock | 22.30 | 14736 |
| 574 | 5703 | 1 | 29.40 | 23 | instock | 15.95 | 11736 |
| 575 | 5704 | 1 | 16.90 | 35 | instock | 8.30 | 15036 |
| 576 | 5705 | 1 | 19.80 | 23 | instock | 9.82 | 15360 |
| 577 | 5706 | 1 | 10.30 | 26 | instock | 5.32 | 15674 |
| 578 | 5707 | 1 | 10.80 | 0 | outofstock | 5.69 | 13557 |
| 579 | 5709 | 1 | 31.70 | 0 | outofstock | 16.54 | 15035 |
| 580 | 5711 | 1 | 25.00 | 23 | instock | 12.40 | 16121 |
| 581 | 5712 | 1 | 57.60 | 0 | outofstock | 30.36 | 14241 |
| 582 | 5715 | 1 | 13.70 | 15 | instock | 7.29 | 14982 |
| 583 | 5722 | 1 | 7.10 | 38 | instock | 3.48 | 15026 |
| 584 | 5736 | 1 | 14.90 | 32 | instock | 7.31 | 15116 |
| 585 | 5737 | 1 | 11.00 | 25 | instock | 5.57 | 15369 |
| 586 | 5738 | 1 | 14.60 | 15 | instock | 7.17 | 15566 |
| 587 | 5739 | 1 | 10.70 | 13 | instock | 5.53 | 16003 |
| 588 | 5741 | 1 | 73.30 | 4 | instock | 37.87 | 15127 |
| 589 | 5742 | 1 | 42.10 | 3 | instock | 22.84 | 15125 |
| 590 | 5743 | 1 | 57.00 | 7 | instock | 29.74 | 14323 |
| 591 | 5747 | 1 | 24.50 | 12 | instock | 12.15 | 15631 |
| 592 | 5753 | 1 | 10.10 | 31 | instock | 5.01 | 16147 |
| 593 | 5756 | 1 | 42.20 | 9 | instock | 25.85 | 7033 |
| 594 | 5760 | 1 | 13.10 | 24 | instock | 8.43 | 11258 |
| 595 | 5761 | 1 | 19.50 | 125 | instock | 12.07 | 13849 |
| 596 | 5764 | 1 | 12.90 | 20 | instock | 6.33 | 15818 |
| 597 | 5766 | 1 | 35.60 | 4 | instock | 17.66 | 15179 |
| 598 | 5767 | 1 | 175.00 | 12 | instock | 90.42 | 15185 |
| 599 | 5768 | 1 | 35.60 | 7 | instock | 18.21 | 15183 |
| 600 | 5769 | 1 | 33.60 | 6 | instock | 16.49 | 15254 |
| 601 | 5770 | 1 | 34.40 | 19 | instock | 18.13 | 15178 |
| 602 | 5771 | 1 | 38.40 | 6 | instock | 20.04 | 15184 |
| 603 | 5772 | 1 | 29.70 | 12 | instock | 15.04 | 15180 |
| 604 | 5773 | 1 | 32.80 | 9 | instock | 17.79 | 15264 |
| 605 | 5777 | 1 | 5.70 | 51 | instock | 3.03 | 14338 |
| 606 | 5778 | 1 | 5.80 | 44 | instock | 3.09 | 15561 |
| 607 | 5779 | 1 | 5.80 | 30 | instock | 2.88 | 16213 |
| 608 | 5794 | 1 | 21.70 | 15 | instock | 10.65 | 14692 |
| 609 | 5795 | 1 | 23.00 | 16 | instock | 11.29 | 13291 |
| 610 | 5796 | 1 | 12.50 | 21 | instock | 6.20 | 13895 |
| 611 | 5797 | 1 | 17.20 | 29 | instock | 9.24 | 15688 |
| 612 | 5799 | 1 | 40.20 | 3 | instock | 19.94 | 14461 |
| 613 | 5800 | 0 | 32.30 | 0 | outofstock | 16.02 | 14689 |
| 614 | 5801 | 1 | 24.00 | 22 | instock | 12.90 | 11277 |
| 615 | 5802 | 1 | 23.80 | 34 | instock | 12.54 | 15399 |
| 616 | 5803 | 1 | 17.10 | 47 | instock | 9.19 | 13572 |
| 617 | 5804 | 1 | 25.00 | 25 | instock | 12.40 | 14955 |
| 618 | 5805 | 0 | 29.20 | 0 | outofstock | 15.09 | NaN |
| 619 | 5806 | 1 | 17.40 | 39 | instock | 8.99 | 13567 |
| 620 | 5807 | 1 | 27.30 | 12 | instock | 13.82 | 15471 |
| 621 | 5808 | 0 | 34.20 | 1 | instock | 18.55 | NaN |
| 622 | 5809 | 1 | 17.90 | 32 | instock | 9.71 | 15080 |
| 623 | 5810 | 1 | 24.00 | 27 | instock | 12.77 | 14429 |
| 624 | 5815 | 1 | 16.60 | 26 | instock | 9.01 | 15238 |
| 625 | 5816 | 1 | 16.90 | 32 | instock | 8.73 | 15237 |
| 626 | 5817 | 1 | 57.60 | 6 | instock | 28.87 | 14600 |
| 627 | 5818 | 1 | 63.50 | 2 | instock | 32.48 | 15241 |
| 628 | 5819 | 1 | 56.00 | 6 | instock | 28.07 | 11933 |
| 629 | 5820 | 1 | 63.50 | 7 | instock | 32.48 | 15240 |
| 630 | 5826 | 1 | 41.20 | 34 | instock | 21.71 | 15325 |
| 631 | 5827 | 1 | 55.00 | 4 | instock | 29.55 | 15328 |
| 632 | 5829 | 1 | 57.00 | 5 | instock | 29.74 | 15329 |
| 633 | 5890 | 1 | 19.30 | 29 | instock | 9.77 | 15775 |
| 634 | 5891 | 1 | 19.00 | 24 | instock | 9.72 | 15774 |
| 635 | 5892 | 1 | 191.30 | 98 | instock | 116.06 | 14983 |
| 636 | 5893 | 1 | 26.60 | 13 | instock | 14.29 | 13910 |
| 637 | 5894 | 1 | 15.40 | 29 | instock | 7.56 | 16539 |
| 638 | 5896 | 1 | 24.70 | 23 | instock | 12.76 | 15910 |
| 639 | 5899 | 1 | 28.10 | 35 | instock | 14.37 | 12339 |
| 640 | 5900 | 1 | 18.25 | 21 | instock | 8.96 | 12869 |
| 641 | 5902 | 1 | 35.10 | 10 | instock | 18.14 | 14095 |
| 642 | 5903 | 1 | 27.30 | 15 | instock | 13.82 | 14099 |
| 643 | 5904 | 1 | 18.80 | 27 | instock | 9.32 | 15856 |
| 644 | 5905 | 1 | 43.90 | 6 | instock | 22.23 | 12881 |
| 645 | 5906 | 1 | 19.80 | 38 | instock | 9.72 | 15857 |
| 646 | 5907 | 1 | 17.70 | 14 | instock | 9.42 | 12882 |
| 647 | 5912 | 1 | 57.00 | 4 | instock | 25.08 | 15227 |
| 648 | 5913 | 1 | 36.00 | 7 | instock | 17.16 | 10014 |
| 649 | 5914 | 1 | 36.00 | 4 | instock | 17.16 | 14265 |
| 650 | 5916 | 1 | 93.00 | 1 | instock | 40.49 | 14774 |
| 651 | 5917 | 1 | 122.00 | 12 | instock | 54.24 | 14775 |
| 652 | 5918 | 1 | 114.00 | 12 | instock | 52.25 | 14773 |
| 653 | 5922 | 1 | 48.50 | 4 | instock | 24.31 | 15343 |
| 654 | 5925 | 1 | 49.50 | 15 | instock | 25.06 | 15351 |
| 655 | 5930 | 1 | 14.10 | 0 | outofstock | 6.92 | 16323 |
| 656 | 5932 | 1 | 59.90 | 13 | instock | 27.18 | 523 |
| 657 | 5950 | 1 | 46.00 | 4 | instock | 24.72 | 15432 |
| 658 | 5951 | 1 | 74.50 | 4 | instock | 39.65 | 16472 |
| 659 | 5952 | 0 | 42.50 | 0 | outofstock | 22.84 | NaN |
| 660 | 5953 | 0 | 47.50 | 0 | outofstock | 23.81 | 14379 |
| 661 | 5954 | 0 | 18.80 | 0 | outofstock | 9.32 | 15609 |
| 662 | 5955 | 0 | 27.30 | 0 | outofstock | 13.68 | 14377 |
| 663 | 5956 | 1 | 17.20 | 32 | instock | 8.80 | 15895 |
| 664 | 5957 | 0 | 39.00 | 0 | outofstock | 20.75 | 13577 |
| 665 | 5958 | 1 | 8.70 | 44 | instock | 4.50 | 15577 |
| 666 | 5959 | 1 | 15.40 | 24 | instock | 7.72 | 15766 |
| 667 | 5960 | 1 | 12.70 | 40 | instock | 6.36 | 15892 |
| 668 | 5962 | 1 | 30.00 | 8 | instock | 15.50 | 16326 |
| 669 | 5963 | 1 | 13.50 | 34 | instock | 6.63 | 15574 |
| 670 | 5964 | 1 | 16.30 | 31 | instock | 8.51 | 13662 |
| 671 | 5967 | 1 | 56.30 | 5 | instock | 30.54 | 11669 |
| 672 | 5968 | 1 | 71.50 | 9 | instock | 35.83 | 13215 |
| 673 | 5969 | 1 | 69.00 | 10 | instock | 37.43 | 13211 |
| 674 | 6035 | 1 | 17.90 | 13 | instock | 9.34 | 15342 |
| 675 | 6038 | 1 | 48.50 | 0 | outofstock | 25.31 | 15318 |
| 676 | 6041 | 1 | 71.70 | 11 | instock | 36.30 | 13073 |
| 677 | 6042 | 1 | 8.50 | 25 | instock | 4.57 | 16159 |
| 678 | 6047 | 1 | 10.90 | 29 | instock | 5.58 | 16264 |
| 679 | 6049 | 1 | 21.80 | 30 | instock | 10.81 | 14899 |
| 680 | 6050 | 1 | 38.50 | 0 | outofstock | 20.09 | 15134 |
| 681 | 6070 | 1 | 9.30 | 30 | instock | 4.95 | 16133 |
| 682 | 6072 | 1 | 13.60 | 3 | instock | 7.03 | 16028 |
| 683 | 6073 | 1 | 24.50 | 29 | instock | 12.41 | 15951 |
| 684 | 6093 | 1 | 12.60 | 51 | instock | 6.71 | 15487 |
| 685 | 6094 | 1 | 13.40 | 24 | instock | 6.65 | 15486 |
| 686 | 6095 | 1 | 29.80 | 31 | instock | 15.86 | 15489 |
| 687 | 6100 | 0 | 12.90 | 0 | outofstock | 6.47 | 15529 |
| 688 | 6101 | 1 | 36.90 | 4 | instock | 20.02 | 14089 |
| 689 | 6103 | 1 | 40.70 | 7 | instock | 21.87 | 14100 |
| 690 | 6104 | 1 | 33.20 | 7 | instock | 17.84 | 14092 |
| 691 | 6105 | 1 | 34.80 | 5 | instock | 17.80 | 14090 |
| 692 | 6106 | 1 | 74.80 | 3 | instock | 40.19 | 14106 |
| 693 | 6107 | 1 | 62.40 | 7 | instock | 31.27 | 14101 |
| 694 | 6108 | 1 | 46.00 | 7 | instock | 24.72 | 14797 |
| 695 | 6109 | 1 | 39.20 | 17 | instock | 21.06 | 15201 |
| 696 | 6125 | 0 | 14.20 | 0 | outofstock | 7.26 | NaN |
| 697 | 6126 | 1 | 135.00 | 138 | instock | 80.33 | 14923 |
| 698 | 6127 | 1 | 10.60 | 32 | instock | 5.42 | 14573 |
| 699 | 6128 | 1 | 10.60 | 45 | instock | 5.64 | 14569 |
| 700 | 6129 | 1 | 5.20 | 68 | instock | 2.74 | 14570 |
| 701 | 6137 | 1 | 46.00 | 7 | instock | 24.00 | 15834 |
| 702 | 6201 | 1 | 105.60 | 16 | instock | 57.29 | 14596 |
| 703 | 6202 | 1 | 116.40 | 12 | instock | 63.15 | 15126 |
| 704 | 6204 | 1 | 31.00 | 17 | instock | 15.86 | 14604 |
| 705 | 6205 | 1 | 20.20 | 38 | instock | 10.54 | 16565 |
| 706 | 6206 | 1 | 25.20 | 16 | instock | 13.15 | 16580 |
| 707 | 6207 | 1 | 25.20 | 22 | instock | 12.89 | 16077 |
| 708 | 6212 | 1 | 115.00 | 16 | instock | 59.42 | 13996 |
| 709 | 6213 | 1 | 121.00 | 9 | instock | 63.14 | 15072 |
| 710 | 6214 | 1 | 99.00 | 9 | instock | 49.62 | 11601 |
| 711 | 6215 | 1 | 115.00 | 14 | instock | 56.45 | 12790 |
| 712 | 6216 | 1 | 121.00 | 14 | instock | 60.02 | 15070 |
| 713 | 6221 | 1 | 23.50 | 22 | instock | 12.02 | 16096 |
| 714 | 6222 | 1 | 26.40 | 29 | instock | 13.23 | 7032 |
| 715 | 6223 | 1 | 26.70 | 17 | instock | 13.80 | 15324 |
| 716 | 6225 | 1 | 20.40 | 26 | instock | 10.22 | 15162 |
| 717 | 6226 | 1 | 20.40 | 26 | instock | 10.96 | 15161 |
| 718 | 6227 | 1 | 40.20 | 11 | instock | 21.39 | 15163 |
| 719 | 6278 | 1 | 9.00 | 24 | instock | 4.65 | 16273 |
| 720 | 6279 | 1 | 45.90 | 10 | instock | 22.77 | 16247 |
| 721 | 6280 | 1 | 10.40 | 38 | instock | 5.53 | 15654 |
| 722 | 6299 | 1 | 78.00 | 0 | outofstock | 41.51 | 15710 |
| 723 | 6301 | 1 | 40.50 | 0 | outofstock | 20.51 | 15745 |
| 724 | 6324 | 0 | 92.00 | 18 | instock | 99.00 | NaN |
| 725 | 6325 | 1 | 27.90 | 22 | instock | 15.14 | 15678 |
| 726 | 6327 | 0 | 28.50 | 0 | outofstock | 14.43 | NaN |
| 727 | 6328 | 1 | 22.40 | 16 | instock | 11.23 | 15810 |
| 728 | 6567 | 1 | 28.40 | 28 | instock | 14.67 | 15779 |
| 729 | 6568 | 1 | 72.00 | 7 | instock | 35.71 | 15707 |
| 730 | 6569 | 1 | 29.00 | 58 | instock | 15.28 | 15705 |
| 731 | 6570 | 1 | 29.20 | 19 | instock | 14.33 | 15706 |
| 732 | 6572 | 1 | 44.00 | 12 | instock | 22.28 | 15704 |
| 733 | 6573 | 1 | 68.30 | 5 | instock | 35.29 | 15473 |
| 734 | 6575 | 1 | 41.80 | 7 | instock | 22.03 | 15479 |
| 735 | 6578 | 1 | 40.00 | 7 | instock | 19.63 | 15647 |
| 736 | 6584 | 1 | 13.50 | 22 | instock | 6.91 | 15769 |
| 737 | 6585 | 1 | 19.00 | 29 | instock | 10.31 | 15434 |
| 738 | 6592 | 1 | 24.40 | 29 | instock | 12.10 | 15764 |
| 739 | 6594 | 0 | 9.10 | 19 | instock | 4.61 | NaN |
| 740 | 6615 | 1 | 32.80 | 12 | instock | 16.95 | 16071 |
| 741 | 6616 | 1 | 15.40 | 33 | instock | 7.88 | 15781 |
| 742 | 6617 | 1 | 9.90 | 33 | instock | 5.22 | 16031 |
| 743 | 6618 | 1 | 13.50 | 49 | instock | 7.18 | 15539 |
| 744 | 6620 | 1 | 51.00 | 11 | instock | 27.14 | 16046 |
| 745 | 6621 | 1 | 35.20 | 7 | instock | 17.46 | 15204 |
| 746 | 6622 | 1 | 42.20 | 16 | instock | 22.02 | 15205 |
| 747 | 6626 | 1 | 33.20 | 11 | instock | 16.47 | 15790 |
| 748 | 6627 | 1 | 41.80 | 4 | instock | 22.24 | 15791 |
| 749 | 6628 | 1 | 32.20 | 7 | instock | 16.80 | 15792 |
| 750 | 6629 | 1 | 37.70 | 10 | instock | 19.48 | 15793 |
| 751 | 6631 | 1 | 47.20 | 10 | instock | 24.39 | 15795 |
| 752 | 6632 | 1 | 52.70 | 0 | outofstock | 26.41 | 15794 |
| 753 | 6635 | 1 | 22.40 | 16 | instock | 10.99 | 15763 |
| 754 | 6663 | 1 | 50.40 | 6 | instock | 26.04 | 16152 |
| 755 | 6664 | 1 | 35.60 | 16 | instock | 19.31 | 15661 |
| 756 | 6665 | 1 | 27.70 | 16 | instock | 14.60 | 16068 |
| 757 | 6666 | 1 | 48.50 | 7 | instock | 25.56 | 16067 |
| 758 | 6738 | 1 | 15.40 | 42 | instock | 8.12 | 8193 |
| 759 | 6751 | 1 | 46.50 | 7 | instock | 24.51 | 16144 |
| 760 | 6753 | 1 | 46.50 | 6 | instock | 22.82 | 15256 |
| 761 | 6821 | 0 | 28.00 | 21 | instock | 14.61 | NaN |
| 762 | 6824 | 0 | 28.00 | 8 | instock | 14.32 | NaN |
| 763 | 6825 | 0 | 24.00 | 5 | instock | 12.40 | NaN |
| 764 | 6826 | 0 | 18.00 | 11 | instock | 8.93 | NaN |
| 765 | 6864 | 0 | 40.00 | 32 | instock | 21.08 | NaN |
| 766 | 6866 | 0 | 40.00 | 42 | instock | 20.67 | NaN |
| 767 | 6869 | 0 | 40.00 | 4 | instock | 19.84 | NaN |
| 768 | 6875 | 0 | 40.00 | 17 | instock | 20.46 | NaN |
| 769 | 6884 | 1 | 46.50 | 9 | instock | 24.99 | 15735 |
| 770 | 6886 | 1 | 42.00 | 8 | instock | 20.62 | 14897 |
| 771 | 6887 | 1 | 21.80 | 15 | instock | 11.71 | 15736 |
| 772 | 6898 | 0 | 30.00 | 51 | instock | 14.88 | NaN |
| 773 | 6899 | 0 | 26.00 | 3 | instock | 13.70 | NaN |
| 774 | 6900 | 0 | 30.00 | 0 | outofstock | 16.28 | NaN |
| 775 | 6901 | 0 | 20.00 | 0 | outofstock | 10.64 | NaN |
| 776 | 6902 | 0 | 31.00 | 6 | instock | 16.50 | NaN |
| 777 | 6903 | 0 | 27.00 | 54 | instock | 14.23 | NaN |
| 778 | 6904 | 0 | 31.00 | 22 | instock | 15.70 | NaN |
| 779 | 6905 | 0 | 21.00 | 3 | instock | 10.63 | NaN |
| 780 | 6906 | 0 | 31.00 | 12 | instock | 16.82 | NaN |
| 781 | 6907 | 0 | 27.00 | 8 | instock | 13.67 | NaN |
| 782 | 6908 | 0 | 31.00 | 14 | instock | 15.70 | NaN |
| 783 | 6909 | 0 | 21.00 | 7 | instock | 11.28 | NaN |
| 784 | 6920 | 1 | 50.50 | 9 | instock | 25.05 | 15740 |
| 785 | 6926 | 1 | 49.90 | 12 | instock | 27.07 | 15845 |
| 786 | 6928 | 1 | 19.00 | 15 | instock | 9.62 | 15741 |
| 787 | 6930 | 1 | 8.40 | 28 | instock | 4.34 | 16135 |
| 788 | 7008 | 0 | 40.00 | 5 | instock | 20.67 | NaN |
| 789 | 7009 | 0 | 40.00 | 10 | instock | 19.63 | NaN |
| 790 | 7010 | 0 | 47.00 | 37 | instock | 23.55 | NaN |
| 791 | 7015 | 0 | 45.00 | 12 | instock | 23.48 | NaN |
| 792 | 7023 | 1 | 27.50 | 23 | instock | 14.21 | 15891 |
| 793 | 7025 | 1 | 69.00 | 8 | instock | 34.22 | 15887 |
| 794 | 7081 | 0 | 45.00 | 17 | instock | 23.95 | NaN |
| 795 | 7084 | 0 | 45.00 | 7 | instock | 24.18 | NaN |
| 796 | 7085 | 0 | 30.00 | 8 | instock | 14.73 | NaN |
| 797 | 7086 | 0 | 26.00 | 2 | instock | 13.43 | NaN |
| 798 | 7087 | 0 | 30.00 | 11 | instock | 15.66 | NaN |
| 799 | 7088 | 0 | 20.00 | 53 | instock | 10.44 | NaN |
| 800 | 7131 | 0 | 45.00 | 19 | instock | 24.18 | NaN |
| 801 | 7132 | 0 | 45.00 | 22 | instock | 24.18 | NaN |
| 802 | 7133 | 0 | 45.00 | 26 | instock | 23.95 | NaN |
| 803 | 7136 | 0 | 45.00 | 7 | instock | 22.55 | NaN |
| 804 | 7137 | 0 | 45.00 | 3 | instock | 23.25 | NaN |
| 805 | 7159 | 0 | 31.00 | 1 | instock | 16.18 | NaN |
| 806 | 7161 | 0 | 21.00 | 5 | instock | 10.85 | NaN |
| 807 | 7162 | 0 | 27.00 | 1 | instock | 13.67 | NaN |
| 808 | 7163 | 0 | 31.00 | 42 | instock | 16.66 | NaN |
| 809 | 7164 | 0 | 31.00 | 51 | instock | 16.02 | NaN |
| 810 | 7168 | 0 | 45.00 | 29 | instock | 23.25 | NaN |
| 811 | 7169 | 0 | 45.00 | 3 | instock | 24.41 | NaN |
| 812 | 7170 | 0 | 45.00 | 43 | instock | 23.72 | NaN |
| 813 | 7192 | 0 | 31.00 | 28 | instock | 16.50 | NaN |
| 814 | 7193 | 0 | 27.00 | 14 | instock | 13.67 | NaN |
| 815 | 7194 | 0 | 31.00 | 5 | instock | 16.02 | NaN |
| 816 | 7195 | 0 | 21.00 | 1 | instock | 10.31 | NaN |
| 817 | 7196 | 0 | 31.00 | 55 | instock | 31.20 | NaN |
| 818 | 7200 | 0 | 31.00 | 6 | instock | 15.54 | NaN |
| 819 | 7201 | 0 | 31.00 | 18 | instock | 16.02 | NaN |
| 820 | 7203 | 0 | 45.00 | 30 | instock | 23.48 | NaN |
| 821 | 7204 | 0 | 45.00 | 9 | instock | 24.18 | NaN |
| 822 | 7247 | 1 | 54.80 | 6 | instock | 27.18 | 13127-1 |
| 823 | 7329 | 0 | 26.50 | 14 | instock | 13.42 | 14680-1 |
| 824 | 7338 | 1 | 16.30 | 40 | instock | 8.00 | 16230 |
print(df_web.shape)
print(df_erp_liaison.shape)
(712, 25) (825, 7)
#Fusionnez les datasets df_merge et df_web
df_web = df_web.rename(columns={'sku': 'id_web'})
df_merge = pd.merge(df_web, df_erp_liaison, on="id_web", how="inner")
df_merge.head(len(df_merge))
df_merge.sort_values(by='stock_quantity', ascending=True)
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 711 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5565 | 1 | 92.00 | 0 | outofstock | 46.11 |
| 471 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6301 | 1 | 40.50 | 0 | outofstock | 20.51 |
| 179 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4618 | 1 | 30.60 | 0 | outofstock | 16.44 |
| 674 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5930 | 1 | 14.10 | 0 | outofstock | 6.92 |
| 501 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6632 | 1 | 52.70 | 0 | outofstock | 26.41 |
| 673 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4198 | 1 | 5.80 | 0 | outofstock | 2.97 |
| 170 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4256 | 1 | 24.40 | 0 | outofstock | 12.61 |
| 169 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5712 | 1 | 57.60 | 0 | outofstock | 30.36 |
| 661 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4876 | 1 | 22.80 | 0 | outofstock | 11.90 |
| 165 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5384 | 1 | 28.80 | 0 | outofstock | 15.18 |
| 544 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4923 | 1 | 7.00 | 0 | outofstock | 3.65 |
| 679 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4858 | 1 | 6.50 | 0 | outofstock | 3.19 |
| 548 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4352 | 1 | 225.00 | 0 | outofstock | 137.81 |
| 39 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4396 | 1 | 62.00 | 0 | outofstock | 28.42 |
| 562 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4976 | 1 | 16.45 | 0 | outofstock | 8.07 |
| 113 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4100 | 1 | 15.80 | 0 | outofstock | 8.57 |
| 572 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4052 | 1 | 33.70 | 0 | outofstock | 18.11 |
| 582 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4051 | 1 | 7.70 | 0 | outofstock | 4.14 |
| 98 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4079 | 1 | 37.00 | 0 | outofstock | 19.50 |
| 93 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4196 | 1 | 27.20 | 0 | outofstock | 14.05 |
| 92 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4274 | 1 | 12.90 | 0 | outofstock | 6.33 |
| 626 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4179 | 1 | 24.00 | 0 | outofstock | 13.02 |
| 607 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5487 | 1 | 43.50 | 0 | outofstock | 23.37 |
| 123 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5707 | 1 | 10.80 | 0 | outofstock | 5.69 |
| 618 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4870 | 1 | 9.30 | 0 | outofstock | 4.81 |
| 622 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4283 | 1 | 27.00 | 0 | outofstock | 13.25 |
| 218 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5700 | 1 | 44.50 | 0 | outofstock | 22.30 |
| 326 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3850 | 1 | 20.80 | 0 | outofstock | 10.64 |
| 333 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6038 | 1 | 48.50 | 0 | outofstock | 25.31 |
| 290 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4606 | 1 | 50.10 | 0 | outofstock | 24.59 |
| 341 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4138 | 1 | 25.70 | 0 | outofstock | 13.01 |
| 281 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6050 | 1 | 38.50 | 0 | outofstock | 20.09 |
| 347 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4706 | 1 | 16.80 | 0 | outofstock | 8.68 |
| 267 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4612 | 1 | 20.60 | 0 | outofstock | 10.22 |
| 216 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4241 | 1 | 8.90 | 0 | outofstock | 4.37 |
| 260 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4065 | 1 | 19.50 | 0 | outofstock | 9.67 |
| 265 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5709 | 1 | 31.70 | 0 | outofstock | 16.54 |
| 255 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4043 | 1 | 60.00 | 0 | outofstock | 29.45 |
| 254 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4047 | 1 | 18.30 | 0 | outofstock | 9.93 |
| 251 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4726 | 1 | 12.70 | 0 | outofstock | 6.82 |
| 18 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4636 | 1 | 50.00 | 0 | outofstock | 25.58 |
| 235 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5617 | 1 | 27.80 | 0 | outofstock | 14.65 |
| 233 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5544 | 1 | 61.60 | 0 | outofstock | 31.51 |
| 452 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6299 | 1 | 78.00 | 0 | outofstock | 41.51 |
| 256 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4885 | 1 | 18.70 | 0 | instock | 9.66 |
| 107 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4139 | 1 | 77.40 | 1 | instock | 39.59 |
| 6 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4630 | 1 | 62.40 | 1 | instock | 33.21 |
| 5 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4631 | 1 | 76.80 | 1 | instock | 38.49 |
| 224 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5916 | 1 | 93.00 | 1 | instock | 40.49 |
| 456 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5063 | 1 | 67.00 | 1 | instock | 33.92 |
| 406 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4300 | 1 | 44.00 | 2 | instock | 23.42 |
| 318 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4046 | 1 | 80.00 | 2 | instock | 40.92 |
| 313 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5818 | 1 | 63.50 | 2 | instock | 32.48 |
| 10 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4627 | 1 | 58.30 | 2 | instock | 28.62 |
| 37 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5574 | 1 | 59.60 | 2 | instock | 30.18 |
| 707 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4039 | 1 | 46.00 | 3 | outofstock | 23.77 |
| 51 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4392 | 1 | 49.50 | 3 | instock | 22.01 |
| 184 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5799 | 1 | 40.20 | 3 | instock | 19.94 |
| 278 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5742 | 1 | 42.10 | 3 | instock | 22.84 |
| 346 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5067 | 1 | 59.90 | 3 | instock | 30.95 |
| 59 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4657 | 1 | 43.00 | 3 | instock | 21.55 |
| 163 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6106 | 1 | 74.80 | 3 | instock | 40.19 |
| 214 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4708 | 1 | 32.60 | 3 | instock | 17.35 |
| 570 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6072 | 1 | 13.60 | 3 | instock | 7.03 |
| 136 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4394 | 1 | 59.80 | 3 | instock | 27.96 |
| 280 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5741 | 1 | 73.30 | 4 | instock | 37.87 |
| 368 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5950 | 1 | 46.00 | 4 | instock | 24.72 |
| 11 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4626 | 1 | 52.90 | 4 | instock | 27.88 |
| 12 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4625 | 1 | 52.40 | 4 | instock | 28.16 |
| 530 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5004 | 1 | 59.40 | 4 | instock | 29.77 |
| 343 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5922 | 1 | 48.50 | 4 | instock | 24.31 |
| 528 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5003 | 1 | 48.70 | 4 | instock | 24.16 |
| 683 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5951 | 1 | 74.50 | 4 | instock | 39.65 |
| 153 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5580 | 1 | 83.70 | 4 | instock | 41.08 |
| 459 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4210 | 1 | 79.80 | 4 | instock | 39.17 |
| 197 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5002 | 1 | 64.90 | 4 | instock | 34.54 |
| 171 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5914 | 1 | 36.00 | 4 | instock | 17.16 |
| 498 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6627 | 1 | 41.80 | 4 | instock | 22.24 |
| 120 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4658 | 1 | 48.80 | 4 | instock | 25.97 |
| 336 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5827 | 1 | 55.00 | 4 | instock | 29.55 |
| 156 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6101 | 1 | 36.90 | 4 | instock | 20.02 |
| 50 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4364 | 1 | 49.50 | 4 | instock | 23.60 |
| 308 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5912 | 1 | 57.00 | 4 | instock | 25.08 |
| 61 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4069 | 1 | 60.00 | 4 | instock | 30.07 |
| 296 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5766 | 1 | 35.60 | 4 | instock | 17.66 |
| 135 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4393 | 1 | 57.00 | 5 | instock | 26.13 |
| 383 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6573 | 1 | 68.30 | 5 | instock | 35.29 |
| 28 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4253 | 1 | 59.60 | 5 | instock | 30.18 |
| 578 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4045 | 1 | 42.60 | 5 | instock | 22.01 |
| 151 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5548 | 1 | 48.80 | 5 | instock | 26.47 |
| 121 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5552 | 1 | 57.70 | 5 | instock | 30.11 |
| 621 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4285 | 1 | 41.00 | 5 | instock | 22.03 |
| 40 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4932 | 1 | 25.70 | 5 | instock | 12.75 |
| 386 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4598 | 1 | 41.80 | 5 | instock | 21.38 |
| 9 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4633 | 1 | 52.40 | 5 | instock | 27.61 |
| 81 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4397 | 1 | 59.00 | 5 | instock | 27.31 |
| 455 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4211 | 1 | 48.50 | 5 | instock | 25.56 |
| 188 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4797 | 1 | 78.00 | 5 | instock | 42.32 |
| 453 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5061 | 1 | 52.60 | 5 | instock | 27.99 |
| 430 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4604 | 1 | 49.00 | 5 | instock | 25.06 |
| 21 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4401 | 1 | 62.50 | 5 | instock | 27.21 |
| 529 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5006 | 1 | 48.70 | 5 | instock | 24.91 |
| 542 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5615 | 1 | 56.40 | 5 | instock | 30.60 |
| 337 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5829 | 1 | 57.00 | 5 | instock | 29.74 |
| 540 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5618 | 1 | 71.30 | 5 | instock | 36.84 |
| 57 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5967 | 1 | 56.30 | 5 | instock | 30.54 |
| 157 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6105 | 1 | 34.80 | 5 | instock | 17.80 |
| 425 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4202 | 1 | 38.00 | 6 | instock | 19.63 |
| 148 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5551 | 1 | 36.30 | 6 | instock | 17.82 |
| 620 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6663 | 1 | 50.40 | 6 | instock | 26.04 |
| 62 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5819 | 1 | 56.00 | 6 | instock | 28.07 |
| 591 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4286 | 1 | 69.80 | 6 | instock | 36.06 |
| 315 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6753 | 1 | 46.50 | 6 | instock | 22.82 |
| 299 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5771 | 1 | 38.40 | 6 | instock | 20.04 |
| 314 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5769 | 1 | 33.60 | 6 | instock | 16.49 |
| 201 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5817 | 1 | 57.60 | 6 | instock | 28.87 |
| 708 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4054 | 1 | 71.60 | 6 | instock | 38.47 |
| 101 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4081 | 1 | 39.00 | 6 | instock | 19.14 |
| 603 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4711 | 1 | 55.40 | 6 | instock | 29.77 |
| 191 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4995 | 1 | 78.00 | 6 | instock | 42.32 |
| 271 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5010 | 1 | 55.60 | 6 | instock | 30.16 |
| 42 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4617 | 1 | 67.50 | 6 | instock | 35.57 |
| 190 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4996 | 1 | 78.00 | 6 | instock | 40.70 |
| 90 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5905 | 1 | 43.90 | 6 | instock | 22.23 |
| 345 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5068 | 1 | 59.90 | 6 | instock | 32.50 |
| 614 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6751 | 1 | 46.50 | 7 | instock | 24.51 |
| 499 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6628 | 1 | 32.20 | 7 | instock | 16.80 |
| 56 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4132 | 1 | 88.40 | 7 | instock | 44.30 |
| 226 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6108 | 1 | 46.00 | 7 | instock | 24.72 |
| 312 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5820 | 1 | 63.50 | 7 | instock | 32.48 |
| 513 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6137 | 1 | 46.00 | 7 | instock | 24.00 |
| 60 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4651 | 1 | 49.00 | 7 | instock | 24.81 |
| 162 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6107 | 1 | 62.40 | 7 | instock | 31.27 |
| 161 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6103 | 1 | 40.70 | 7 | instock | 21.87 |
| 155 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4597 | 1 | 61.60 | 7 | instock | 33.42 |
| 174 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5743 | 1 | 57.00 | 7 | instock | 29.74 |
| 158 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6104 | 1 | 33.20 | 7 | instock | 17.84 |
| 545 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5609 | 1 | 38.60 | 7 | instock | 20.54 |
| 181 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4908 | 1 | 53.20 | 7 | instock | 26.11 |
| 73 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5393 | 1 | 35.30 | 7 | instock | 18.06 |
| 385 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4596 | 1 | 43.90 | 7 | instock | 22.91 |
| 387 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6575 | 1 | 41.80 | 7 | instock | 22.03 |
| 41 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5913 | 1 | 36.00 | 7 | instock | 17.16 |
| 102 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4053 | 1 | 44.30 | 7 | instock | 22.20 |
| 49 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4391 | 1 | 49.50 | 7 | instock | 22.01 |
| 119 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4655 | 1 | 40.20 | 7 | instock | 20.35 |
| 43 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4709 | 1 | 44.00 | 7 | instock | 22.05 |
| 304 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6621 | 1 | 35.20 | 7 | instock | 17.46 |
| 298 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5768 | 1 | 35.60 | 7 | instock | 18.21 |
| 236 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5616 | 1 | 38.40 | 7 | instock | 19.05 |
| 592 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6666 | 1 | 48.50 | 7 | instock | 25.56 |
| 19 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4629 | 1 | 52.40 | 7 | instock | 27.07 |
| 451 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6568 | 1 | 72.00 | 7 | instock | 35.71 |
| 421 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6578 | 1 | 40.00 | 7 | instock | 19.63 |
| 709 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5561 | 1 | 58.00 | 8 | instock | 30.27 |
| 676 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5962 | 1 | 30.00 | 8 | instock | 15.50 |
| 8 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4628 | 1 | 39.60 | 8 | instock | 21.07 |
| 505 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4891 | 1 | 27.90 | 8 | instock | 14.70 |
| 45 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4619 | 1 | 59.00 | 8 | instock | 32.01 |
| 288 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4603 | 1 | 31.50 | 8 | instock | 15.95 |
| 590 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4287 | 1 | 38.60 | 8 | instock | 20.34 |
| 97 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4073 | 1 | 77.80 | 8 | instock | 40.60 |
| 535 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7025 | 1 | 69.00 | 8 | instock | 34.22 |
| 114 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4078 | 1 | 44.00 | 8 | instock | 22.28 |
| 65 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4072 | 1 | 32.00 | 8 | instock | 15.71 |
| 68 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5398 | 1 | 39.00 | 8 | instock | 21.16 |
| 118 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4653 | 1 | 36.20 | 8 | instock | 19.64 |
| 429 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4602 | 1 | 31.50 | 8 | instock | 16.93 |
| 149 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5550 | 1 | 34.30 | 8 | instock | 17.90 |
| 227 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4107 | 1 | 35.00 | 8 | instock | 17.54 |
| 523 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5522 | 1 | 48.40 | 8 | instock | 26.26 |
| 241 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6886 | 1 | 42.00 | 8 | instock | 20.62 |
| 52 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4395 | 1 | 27.50 | 9 | instock | 13.11 |
| 289 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4605 | 1 | 32.20 | 9 | instock | 16.47 |
| 317 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5773 | 1 | 32.80 | 9 | instock | 17.79 |
| 469 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6920 | 1 | 50.50 | 9 | instock | 25.05 |
| 17 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4632 | 1 | 50.00 | 9 | instock | 26.87 |
| 466 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6884 | 1 | 46.50 | 9 | instock | 24.99 |
| 270 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6213 | 1 | 121.00 | 9 | instock | 63.14 |
| 213 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4705 | 1 | 31.60 | 9 | instock | 17.14 |
| 205 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5690 | 1 | 44.60 | 9 | instock | 21.89 |
| 53 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6214 | 1 | 99.00 | 9 | instock | 49.62 |
| 524 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5523 | 1 | 60.40 | 9 | instock | 31.83 |
| 608 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5486 | 1 | 49.50 | 9 | instock | 26.09 |
| 106 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5968 | 1 | 71.50 | 9 | instock | 35.83 |
| 168 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4904 | 1 | 137.00 | 9 | instock | 67.95 |
| 30 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5756 | 1 | 42.20 | 9 | instock | 25.85 |
| 526 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5524 | 1 | 38.60 | 9 | instock | 19.74 |
| 458 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4213 | 1 | 58.80 | 10 | instock | 29.16 |
| 324 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3849 | 1 | 34.30 | 10 | instock | 17.54 |
| 541 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5619 | 1 | 71.30 | 10 | instock | 38.31 |
| 83 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4398 | 1 | 59.00 | 10 | instock | 28.39 |
| 159 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5902 | 1 | 35.10 | 10 | instock | 18.14 |
| 561 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4974 | 1 | 23.00 | 10 | instock | 12.12 |
| 411 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4687 | 1 | 30.10 | 10 | instock | 15.40 |
| 105 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5969 | 1 | 69.00 | 10 | instock | 37.43 |
| 399 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4919 | 1 | 24.40 | 10 | instock | 12.86 |
| 702 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4299 | 1 | 39.10 | 10 | instock | 19.19 |
| 20 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5383 | 1 | 19.50 | 10 | instock | 10.18 |
| 462 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4788 | 1 | 12.30 | 10 | instock | 6.29 |
| 82 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4399 | 1 | 59.00 | 10 | instock | 28.12 |
| 502 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6631 | 1 | 47.20 | 10 | instock | 24.39 |
| 644 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6279 | 1 | 45.90 | 10 | instock | 22.77 |
| 500 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6629 | 1 | 37.70 | 10 | instock | 19.48 |
| 178 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4616 | 1 | 57.00 | 10 | instock | 27.98 |
| 474 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5564 | 1 | 30.80 | 10 | instock | 16.07 |
| 426 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4201 | 1 | 38.00 | 11 | instock | 19.24 |
| 589 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4900 | 1 | 20.80 | 11 | instock | 10.75 |
| 96 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6041 | 1 | 71.70 | 11 | instock | 36.30 |
| 215 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5488 | 1 | 43.50 | 11 | instock | 22.70 |
| 550 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5608 | 1 | 30.50 | 11 | instock | 15.29 |
| 294 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6227 | 1 | 40.20 | 11 | instock | 21.39 |
| 24 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4402 | 1 | 176.00 | 11 | instock | 78.25 |
| 583 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6620 | 1 | 51.00 | 11 | instock | 27.14 |
| 209 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5474 | 1 | 42.00 | 11 | instock | 22.57 |
| 497 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6626 | 1 | 33.20 | 11 | instock | 16.47 |
| 1 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4634 | 1 | 41.00 | 11 | instock | 20.12 |
| 189 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4994 | 1 | 78.00 | 11 | instock | 40.70 |
| 127 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4573 | 1 | 67.20 | 12 | instock | 36.46 |
| 187 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4258 | 1 | 32.10 | 12 | instock | 17.25 |
| 54 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5008 | 1 | 105.00 | 12 | instock | 56.42 |
| 382 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5807 | 1 | 27.30 | 12 | instock | 13.82 |
| 632 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5566 | 1 | 27.50 | 12 | instock | 14.63 |
| 439 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4217 | 1 | 17.10 | 12 | instock | 9.28 |
| 229 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4903 | 1 | 102.30 | 12 | instock | 51.80 |
| 356 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4115 | 1 | 100.00 | 12 | instock | 52.70 |
| 448 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6572 | 1 | 44.00 | 12 | instock | 22.28 |
| 223 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5918 | 1 | 114.00 | 12 | instock | 52.25 |
| 525 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5520 | 1 | 38.60 | 12 | instock | 19.15 |
| 595 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6615 | 1 | 32.80 | 12 | instock | 16.95 |
| 300 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5767 | 1 | 175.00 | 12 | instock | 90.42 |
| 279 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6202 | 1 | 116.40 | 12 | instock | 63.15 |
| 7 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4635 | 1 | 62.40 | 12 | instock | 31.92 |
| 457 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4212 | 1 | 39.80 | 12 | instock | 21.39 |
| 33 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4406 | 1 | 157.00 | 12 | instock | 69.08 |
| 225 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5917 | 1 | 122.00 | 12 | instock | 54.24 |
| 515 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6926 | 1 | 49.90 | 12 | instock | 27.07 |
| 327 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4040 | 1 | 34.30 | 12 | instock | 18.25 |
| 454 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5062 | 1 | 45.00 | 12 | instock | 23.25 |
| 574 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5465 | 1 | 54.80 | 12 | instock | 28.60 |
| 297 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5772 | 1 | 29.70 | 12 | instock | 15.04 |
| 222 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4400 | 1 | 44.00 | 12 | instock | 21.18 |
| 420 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5747 | 1 | 24.50 | 12 | instock | 12.15 |
| 253 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4041 | 1 | 32.70 | 12 | instock | 17.57 |
| 361 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4205 | 1 | 23.00 | 12 | instock | 11.65 |
| 563 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4725 | 1 | 23.40 | 13 | instock | 12.33 |
| 598 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4662 | 1 | 20.80 | 13 | instock | 10.96 |
| 44 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4656 | 1 | 43.00 | 13 | instock | 22.88 |
| 232 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5545 | 1 | 65.90 | 13 | instock | 32.35 |
| 349 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4108 | 1 | 31.70 | 13 | instock | 16.54 |
| 145 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5893 | 1 | 26.60 | 13 | instock | 14.29 |
| 152 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5554 | 1 | 38.00 | 13 | instock | 19.83 |
| 342 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6035 | 1 | 17.90 | 13 | instock | 9.34 |
| 3 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5932 | 1 | 59.90 | 13 | instock | 27.18 |
| 560 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5739 | 1 | 10.70 | 13 | instock | 5.53 |
| 269 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6216 | 1 | 121.00 | 14 | instock | 60.02 |
| 86 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6215 | 1 | 115.00 | 14 | instock | 56.45 |
| 85 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4794 | 1 | 41.60 | 14 | instock | 22.14 |
| 91 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5907 | 1 | 17.70 | 14 | instock | 9.42 |
| 344 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5069 | 1 | 65.00 | 14 | instock | 35.26 |
| 117 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4654 | 1 | 33.40 | 14 | instock | 17.43 |
| 600 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5697 | 1 | 29.90 | 14 | instock | 15.29 |
| 23 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4407 | 1 | 104.00 | 14 | instock | 46.71 |
| 203 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5396 | 1 | 17.10 | 14 | instock | 8.48 |
| 640 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4152 | 1 | 19.20 | 14 | instock | 9.52 |
| 416 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4909 | 1 | 25.90 | 14 | instock | 12.85 |
| 551 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5611 | 1 | 63.40 | 14 | instock | 33.74 |
| 609 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5485 | 1 | 33.40 | 14 | instock | 16.57 |
| 486 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4886 | 1 | 28.40 | 14 | instock | 14.53 |
| 460 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4728 | 1 | 29.50 | 14 | instock | 14.48 |
| 467 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6887 | 1 | 21.80 | 15 | instock | 11.71 |
| 627 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4087 | 1 | 14.40 | 15 | instock | 7.81 |
| 87 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5007 | 1 | 105.00 | 15 | instock | 55.88 |
| 71 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5628 | 1 | 25.00 | 15 | instock | 12.79 |
| 160 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5903 | 1 | 27.30 | 15 | instock | 13.82 |
| 668 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4268 | 1 | 15.20 | 15 | instock | 7.54 |
| 461 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4793 | 1 | 18.70 | 15 | instock | 9.37 |
| 470 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6928 | 1 | 19.00 | 15 | instock | 9.62 |
| 108 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4405 | 1 | 68.10 | 15 | instock | 32.46 |
| 94 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4902 | 1 | 46.00 | 15 | instock | 23.53 |
| 257 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5715 | 1 | 13.70 | 15 | instock | 7.29 |
| 348 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5925 | 1 | 49.50 | 15 | instock | 25.06 |
| 579 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4042 | 1 | 31.20 | 15 | instock | 15.48 |
| 103 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4303 | 1 | 30.00 | 15 | instock | 15.19 |
| 405 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5738 | 1 | 14.60 | 15 | instock | 7.17 |
| 400 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4918 | 1 | 37.20 | 15 | instock | 18.64 |
| 696 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4727 | 1 | 26.00 | 15 | instock | 12.90 |
| 384 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4600 | 1 | 26.50 | 15 | instock | 13.14 |
| 211 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5794 | 1 | 21.70 | 15 | instock | 10.65 |
| 305 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6622 | 1 | 42.20 | 16 | instock | 22.02 |
| 72 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4257 | 1 | 31.70 | 16 | instock | 17.20 |
| 325 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3847 | 1 | 24.20 | 16 | instock | 12.88 |
| 593 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6665 | 1 | 27.70 | 16 | instock | 14.60 |
| 494 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4167 | 1 | 14.30 | 16 | instock | 7.24 |
| 340 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4130 | 1 | 23.00 | 16 | instock | 12.48 |
| 483 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4102 | 1 | 16.30 | 16 | instock | 8.00 |
| 480 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6635 | 1 | 22.40 | 16 | instock | 10.99 |
| 507 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6328 | 1 | 22.40 | 16 | instock | 11.23 |
| 199 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6201 | 1 | 105.60 | 16 | instock | 57.29 |
| 154 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6212 | 1 | 115.00 | 16 | instock | 59.42 |
| 150 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5547 | 1 | 24.60 | 16 | instock | 12.71 |
| 133 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4783 | 1 | 29.50 | 16 | instock | 15.85 |
| 435 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4264 | 1 | 17.80 | 16 | instock | 9.20 |
| 398 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4920 | 1 | 24.40 | 16 | instock | 12.86 |
| 703 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6206 | 1 | 25.20 | 16 | instock | 13.15 |
| 575 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4889 | 1 | 25.30 | 16 | instock | 12.55 |
| 109 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5795 | 1 | 23.00 | 16 | instock | 11.29 |
| 710 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5563 | 1 | 58.00 | 16 | instock | 29.07 |
| 628 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4615 | 1 | 24.00 | 16 | instock | 12.28 |
| 431 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6664 | 1 | 35.60 | 16 | instock | 19.31 |
| 334 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6223 | 1 | 26.70 | 17 | instock | 13.80 |
| 686 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4298 | 1 | 23.20 | 17 | instock | 11.99 |
| 587 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4673 | 1 | 19.80 | 17 | instock | 10.33 |
| 489 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4888 | 1 | 27.90 | 17 | instock | 14.85 |
| 355 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4098 | 1 | 22.10 | 17 | instock | 10.96 |
| 22 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4404 | 1 | 108.50 | 17 | instock | 52.22 |
| 228 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4901 | 1 | 41.00 | 17 | instock | 20.76 |
| 238 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5614 | 1 | 19.20 | 17 | instock | 9.42 |
| 202 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6204 | 1 | 31.00 | 17 | instock | 15.86 |
| 192 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4276 | 1 | 17.60 | 17 | instock | 9.46 |
| 302 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6109 | 1 | 39.20 | 17 | instock | 21.06 |
| 434 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4263 | 1 | 15.80 | 18 | instock | 8.49 |
| 104 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4137 | 1 | 29.80 | 18 | instock | 15.86 |
| 588 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4899 | 1 | 21.20 | 18 | instock | 11.17 |
| 389 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5491 | 1 | 26.50 | 18 | instock | 13.01 |
| 88 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4582 | 1 | 109.60 | 18 | instock | 53.80 |
| 396 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5477 | 1 | 19.80 | 18 | instock | 10.43 |
| 404 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4096 | 1 | 22.80 | 18 | instock | 11.54 |
| 647 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4649 | 1 | 16.50 | 18 | instock | 8.10 |
| 303 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5546 | 1 | 15.20 | 18 | instock | 7.93 |
| 419 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4176 | 1 | 13.50 | 18 | instock | 6.63 |
| 198 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5001 | 1 | 217.50 | 18 | instock | 116.87 |
| 309 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4980 | 1 | 26.50 | 18 | instock | 14.10 |
| 66 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5445 | 1 | 16.30 | 18 | instock | 8.00 |
| 533 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4722 | 1 | 13.70 | 18 | instock | 6.72 |
| 245 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5612 | 1 | 124.80 | 19 | instock | 66.41 |
| 492 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4180 | 1 | 24.00 | 19 | instock | 12.28 |
| 221 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4975 | 1 | 23.70 | 19 | instock | 12.73 |
| 450 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6570 | 1 | 29.20 | 19 | instock | 14.33 |
| 377 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4566 | 1 | 28.50 | 19 | instock | 15.31 |
| 576 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4890 | 1 | 17.00 | 19 | instock | 8.78 |
| 532 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4723 | 1 | 29.00 | 19 | instock | 15.43 |
| 615 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5504 | 1 | 13.80 | 19 | instock | 6.77 |
| 699 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4782 | 1 | 9.80 | 19 | instock | 5.01 |
| 556 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4071 | 1 | 33.20 | 19 | instock | 17.15 |
| 697 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4301 | 1 | 17.50 | 19 | instock | 9.49 |
| 295 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5770 | 1 | 34.40 | 19 | instock | 18.13 |
| 596 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4778 | 1 | 13.90 | 20 | instock | 6.89 |
| 306 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4650 | 1 | 25.30 | 20 | instock | 13.07 |
| 442 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4094 | 1 | 13.70 | 20 | instock | 7.15 |
| 388 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4215 | 1 | 26.50 | 20 | instock | 13.97 |
| 374 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4785 | 1 | 10.10 | 20 | instock | 4.96 |
| 358 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4664 | 1 | 16.40 | 20 | instock | 8.39 |
| 511 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5764 | 1 | 12.90 | 20 | instock | 6.33 |
| 606 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4166 | 1 | 20.50 | 20 | instock | 10.27 |
| 428 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4717 | 1 | 23.40 | 20 | instock | 11.73 |
| 67 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4254 | 1 | 26.90 | 20 | instock | 14.59 |
| 493 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4168 | 1 | 18.20 | 21 | instock | 9.40 |
| 328 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4224 | 1 | 17.20 | 21 | instock | 8.53 |
| 585 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4669 | 1 | 20.20 | 21 | instock | 10.65 |
| 89 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5900 | 1 | 18.25 | 21 | instock | 8.96 |
| 664 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4083 | 1 | 17.00 | 21 | instock | 8.78 |
| 506 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4893 | 1 | 27.90 | 21 | instock | 14.99 |
| 381 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4707 | 1 | 22.80 | 21 | instock | 11.54 |
| 465 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4784 | 1 | 28.50 | 21 | instock | 14.28 |
| 206 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4668 | 1 | 12.30 | 21 | instock | 6.23 |
| 210 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4757 | 1 | 26.50 | 21 | instock | 13.01 |
| 142 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5796 | 1 | 12.50 | 21 | instock | 6.20 |
| 243 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4101 | 1 | 15.80 | 21 | instock | 8.33 |
| 625 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4178 | 1 | 11.50 | 21 | instock | 6.18 |
| 444 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6325 | 1 | 27.90 | 22 | instock | 15.14 |
| 378 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4231 | 1 | 11.10 | 22 | instock | 5.85 |
| 597 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6207 | 1 | 25.20 | 22 | instock | 12.89 |
| 648 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4648 | 1 | 24.30 | 22 | instock | 12.68 |
| 601 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6221 | 1 | 23.50 | 22 | instock | 12.02 |
| 484 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6584 | 1 | 13.50 | 22 | instock | 6.91 |
| 217 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5573 | 1 | 34.70 | 22 | instock | 17.39 |
| 463 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4790 | 1 | 11.10 | 22 | instock | 5.62 |
| 514 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4270 | 1 | 15.50 | 22 | instock | 8.25 |
| 48 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5801 | 1 | 24.00 | 22 | instock | 12.90 |
| 394 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4067 | 1 | 22.00 | 22 | instock | 11.37 |
| 690 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4964 | 1 | 12.10 | 23 | instock | 6.50 |
| 301 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4715 | 1 | 11.10 | 23 | instock | 5.91 |
| 472 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4183 | 1 | 21.40 | 23 | instock | 10.61 |
| 605 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5711 | 1 | 25.00 | 23 | instock | 12.40 |
| 70 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5630 | 1 | 28.00 | 23 | instock | 14.61 |
| 468 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4962 | 1 | 11.30 | 23 | instock | 5.55 |
| 130 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4690 | 1 | 12.80 | 23 | instock | 6.94 |
| 231 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5525 | 1 | 12.00 | 23 | instock | 6.26 |
| 58 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5703 | 1 | 29.40 | 23 | instock | 15.95 |
| 116 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4271 | 1 | 16.60 | 23 | instock | 8.32 |
| 137 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4910 | 1 | 17.30 | 23 | instock | 8.76 |
| 284 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4151 | 1 | 13.70 | 23 | instock | 7.36 |
| 339 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4939 | 1 | 12.90 | 23 | instock | 6.53 |
| 365 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4558 | 1 | 28.10 | 23 | instock | 15.24 |
| 166 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4752 | 1 | 27.90 | 23 | instock | 13.69 |
| 675 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4686 | 1 | 14.00 | 23 | instock | 7.31 |
| 138 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4913 | 1 | 28.00 | 23 | instock | 14.76 |
| 566 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4084 | 1 | 23.20 | 23 | instock | 11.63 |
| 110 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4978 | 1 | 18.50 | 23 | instock | 9.46 |
| 143 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5389 | 1 | 16.10 | 23 | instock | 8.32 |
| 536 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7023 | 1 | 27.50 | 23 | instock | 14.21 |
| 367 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4753 | 1 | 12.00 | 23 | instock | 6.51 |
| 508 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4799 | 1 | 14.90 | 23 | instock | 7.39 |
| 667 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5480 | 1 | 10.40 | 23 | instock | 5.21 |
| 350 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5705 | 1 | 19.80 | 23 | instock | 9.82 |
| 262 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4613 | 1 | 16.90 | 23 | instock | 8.38 |
| 531 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4614 | 1 | 19.00 | 23 | instock | 10.31 |
| 692 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4719 | 1 | 12.50 | 23 | instock | 6.46 |
| 539 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5896 | 1 | 24.70 | 23 | instock | 12.76 |
| 47 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5760 | 1 | 13.10 | 24 | instock | 8.43 |
| 128 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4750 | 1 | 16.40 | 24 | instock | 8.30 |
| 274 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5395 | 1 | 12.70 | 24 | instock | 6.82 |
| 316 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4227 | 1 | 12.60 | 24 | instock | 6.77 |
| 705 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4965 | 1 | 7.10 | 24 | instock | 3.67 |
| 391 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6094 | 1 | 13.40 | 24 | instock | 6.65 |
| 129 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4666 | 1 | 21.00 | 24 | instock | 11.18 |
| 487 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5891 | 1 | 19.00 | 24 | instock | 9.72 |
| 581 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4048 | 1 | 22.80 | 24 | instock | 11.78 |
| 167 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5506 | 1 | 18.20 | 24 | instock | 9.59 |
| 496 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4106 | 1 | 12.60 | 24 | instock | 6.64 |
| 482 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5959 | 1 | 15.40 | 24 | instock | 7.72 |
| 659 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4933 | 1 | 18.40 | 24 | instock | 9.22 |
| 656 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4924 | 1 | 12.80 | 24 | instock | 6.28 |
| 653 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6278 | 1 | 9.00 | 24 | instock | 4.65 |
| 415 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4914 | 1 | 25.90 | 24 | instock | 12.98 |
| 619 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4601 | 1 | 16.10 | 24 | instock | 8.57 |
| 669 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4250 | 1 | 19.50 | 24 | instock | 9.97 |
| 586 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4674 | 1 | 19.00 | 24 | instock | 9.91 |
| 503 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5696 | 1 | 17.50 | 24 | instock | 9.49 |
| 74 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5397 | 1 | 24.00 | 24 | instock | 12.40 |
| 477 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5484 | 1 | 21.60 | 25 | instock | 11.61 |
| 283 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5481 | 1 | 11.50 | 25 | instock | 5.64 |
| 80 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4219 | 1 | 16.70 | 25 | instock | 8.97 |
| 680 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4068 | 1 | 16.60 | 25 | instock | 8.92 |
| 252 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5804 | 1 | 25.00 | 25 | instock | 12.40 |
| 275 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4936 | 1 | 11.10 | 25 | instock | 5.68 |
| 624 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6042 | 1 | 8.50 | 25 | instock | 4.57 |
| 580 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4049 | 1 | 19.30 | 25 | instock | 10.27 |
| 352 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5737 | 1 | 11.00 | 25 | instock | 5.57 |
| 321 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4677 | 1 | 9.50 | 25 | instock | 4.91 |
| 207 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5694 | 1 | 12.70 | 25 | instock | 6.23 |
| 219 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4713 | 1 | 18.40 | 25 | instock | 9.22 |
| 311 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5815 | 1 | 16.60 | 26 | instock | 9.01 |
| 527 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5000 | 1 | 27.30 | 26 | instock | 14.53 |
| 99 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4272 | 1 | 9.20 | 26 | instock | 4.85 |
| 543 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4929 | 1 | 16.70 | 26 | instock | 8.28 |
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4729 | 1 | 8.60 | 26 | instock | 4.22 |
| 694 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4267 | 1 | 19.00 | 26 | instock | 9.33 |
| 351 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4714 | 1 | 13.30 | 26 | instock | 7.22 |
| 660 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4937 | 1 | 9.90 | 26 | instock | 4.86 |
| 292 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6226 | 1 | 20.40 | 26 | instock | 10.96 |
| 272 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4165 | 1 | 12.00 | 26 | instock | 5.95 |
| 293 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6225 | 1 | 20.40 | 26 | instock | 10.22 |
| 323 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4288 | 1 | 26.70 | 26 | instock | 14.48 |
| 390 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4163 | 1 | 10.80 | 26 | instock | 5.80 |
| 637 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4759 | 1 | 16.90 | 26 | instock | 8.30 |
| 706 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4032 | 1 | 14.10 | 26 | instock | 6.92 |
| 629 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4187 | 1 | 13.30 | 26 | instock | 6.67 |
| 440 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5706 | 1 | 10.30 | 26 | instock | 5.32 |
| 559 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4066 | 1 | 20.80 | 27 | instock | 10.42 |
| 567 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5380 | 1 | 18.00 | 27 | instock | 9.77 |
| 282 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4265 | 1 | 9.60 | 27 | instock | 4.81 |
| 519 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5904 | 1 | 18.80 | 27 | instock | 9.32 |
| 602 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4245 | 1 | 8.90 | 27 | instock | 4.69 |
| 682 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4085 | 1 | 19.00 | 27 | instock | 9.82 |
| 516 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4646 | 1 | 21.50 | 27 | instock | 10.89 |
| 684 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4225 | 1 | 16.90 | 27 | instock | 9.08 |
| 200 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4791 | 1 | 13.60 | 27 | instock | 7.38 |
| 613 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4734 | 1 | 15.30 | 27 | instock | 8.22 |
| 332 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4789 | 1 | 11.10 | 27 | instock | 5.96 |
| 701 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4239 | 1 | 28.00 | 27 | instock | 14.76 |
| 182 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5810 | 1 | 24.00 | 27 | instock | 12.77 |
| 631 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4190 | 1 | 12.10 | 27 | instock | 6.13 |
| 122 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5056 | 1 | 7.50 | 27 | instock | 3.95 |
| 436 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4712 | 1 | 15.80 | 27 | instock | 8.57 |
| 359 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4229 | 1 | 9.60 | 28 | instock | 4.96 |
| 183 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4684 | 1 | 18.10 | 28 | instock | 9.45 |
| 495 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4170 | 1 | 9.00 | 28 | instock | 4.51 |
| 518 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4620 | 1 | 11.90 | 28 | instock | 6.03 |
| 677 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5446 | 1 | 16.20 | 28 | instock | 8.29 |
| 397 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4671 | 1 | 21.90 | 28 | instock | 11.32 |
| 490 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6567 | 1 | 28.40 | 28 | instock | 14.67 |
| 412 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4177 | 1 | 13.50 | 28 | instock | 7.11 |
| 402 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4934 | 1 | 22.20 | 28 | instock | 11.93 |
| 115 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4164 | 1 | 7.60 | 28 | instock | 4.04 |
| 642 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4269 | 1 | 10.20 | 28 | instock | 5.32 |
| 36 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5629 | 1 | 10.30 | 28 | instock | 5.06 |
| 417 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4915 | 1 | 25.90 | 28 | instock | 13.38 |
| 418 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4564 | 1 | 21.70 | 28 | instock | 11.66 |
| 240 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4277 | 1 | 24.80 | 28 | instock | 12.69 |
| 612 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6930 | 1 | 8.40 | 28 | instock | 4.34 |
| 237 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5613 | 1 | 19.20 | 28 | instock | 10.22 |
| 319 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4676 | 1 | 12.90 | 28 | instock | 6.93 |
| 268 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4928 | 1 | 7.90 | 28 | instock | 3.88 |
| 366 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4246 | 1 | 15.30 | 29 | instock | 8.14 |
| 369 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6585 | 1 | 19.00 | 29 | instock | 10.31 |
| 509 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5693 | 1 | 13.00 | 29 | instock | 6.52 |
| 446 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5797 | 1 | 17.20 | 29 | instock | 9.24 |
| 685 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4060 | 1 | 11.90 | 29 | instock | 6.33 |
| 370 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4240 | 1 | 28.00 | 29 | instock | 14.47 |
| 695 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5894 | 1 | 15.40 | 29 | instock | 7.56 |
| 577 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4057 | 1 | 8.70 | 29 | instock | 4.36 |
| 372 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4194 | 1 | 10.80 | 29 | instock | 5.58 |
| 375 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4611 | 1 | 26.20 | 29 | instock | 13.67 |
| 554 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6073 | 1 | 24.50 | 29 | instock | 12.41 |
| 29 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6222 | 1 | 26.40 | 29 | instock | 13.23 |
| 244 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5610 | 1 | 18.00 | 29 | instock | 9.02 |
| 464 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4792 | 1 | 21.00 | 29 | instock | 11.28 |
| 488 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5890 | 1 | 19.30 | 29 | instock | 9.77 |
| 481 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6592 | 1 | 24.40 | 29 | instock | 12.10 |
| 662 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4860 | 1 | 8.70 | 29 | instock | 4.63 |
| 650 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6047 | 1 | 10.90 | 29 | instock | 5.58 |
| 630 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4186 | 1 | 16.60 | 29 | instock | 9.01 |
| 379 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5394 | 1 | 10.70 | 29 | instock | 5.25 |
| 623 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4930 | 1 | 17.50 | 29 | instock | 9.31 |
| 330 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4242 | 1 | 8.60 | 30 | instock | 4.22 |
| 611 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6070 | 1 | 9.30 | 30 | instock | 4.95 |
| 549 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4074 | 1 | 12.70 | 30 | instock | 6.76 |
| 564 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5382 | 1 | 22.80 | 30 | instock | 11.54 |
| 565 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4086 | 1 | 16.40 | 30 | instock | 8.13 |
| 555 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4892 | 1 | 20.10 | 30 | instock | 10.90 |
| 639 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4153 | 1 | 29.00 | 30 | instock | 15.13 |
| 649 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4191 | 1 | 9.30 | 30 | instock | 4.76 |
| 688 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4103 | 1 | 16.30 | 30 | instock | 8.00 |
| 242 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6049 | 1 | 21.80 | 30 | instock | 10.81 |
| 636 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5779 | 1 | 5.80 | 30 | instock | 2.88 |
| 568 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4207 | 1 | 6.70 | 30 | instock | 3.63 |
| 672 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4062 | 1 | 11.90 | 30 | instock | 6.27 |
| 177 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4739 | 1 | 7.40 | 30 | instock | 3.75 |
| 678 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4281 | 1 | 11.60 | 30 | instock | 5.69 |
| 395 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4670 | 1 | 17.00 | 30 | instock | 8.96 |
| 84 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4228 | 1 | 29.90 | 30 | instock | 16.07 |
| 259 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4704 | 1 | 18.20 | 30 | instock | 9.22 |
| 247 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4977 | 1 | 16.30 | 31 | instock | 8.84 |
| 616 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5753 | 1 | 10.10 | 31 | instock | 5.01 |
| 27 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4730 | 1 | 14.30 | 31 | instock | 7.24 |
| 320 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4678 | 1 | 29.80 | 31 | instock | 15.09 |
| 263 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4251 | 1 | 14.10 | 31 | instock | 7.65 |
| 131 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5964 | 1 | 16.30 | 31 | instock | 8.51 |
| 634 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4172 | 1 | 5.70 | 31 | instock | 2.95 |
| 134 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4675 | 1 | 10.70 | 31 | instock | 5.64 |
| 393 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6095 | 1 | 29.80 | 31 | instock | 15.86 |
| 186 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4162 | 1 | 14.30 | 31 | instock | 7.02 |
| 475 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5483 | 1 | 17.90 | 31 | instock | 9.71 |
| 285 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4154 | 1 | 9.80 | 31 | instock | 4.91 |
| 689 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4720 | 1 | 15.90 | 31 | instock | 8.46 |
| 250 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4260 | 1 | 12.20 | 31 | instock | 6.37 |
| 112 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4740 | 1 | 9.70 | 31 | instock | 5.21 |
| 100 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4780 | 1 | 13.70 | 32 | instock | 6.72 |
| 25 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4795 | 1 | 12.00 | 32 | instock | 6.08 |
| 646 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4197 | 1 | 9.40 | 32 | instock | 5.10 |
| 558 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4064 | 1 | 14.40 | 32 | instock | 7.66 |
| 111 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4938 | 1 | 12.50 | 32 | instock | 6.46 |
| 95 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4076 | 1 | 14.05 | 32 | instock | 6.90 |
| 310 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5816 | 1 | 16.90 | 32 | instock | 8.73 |
| 230 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5443 | 1 | 23.60 | 32 | instock | 12.56 |
| 322 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4679 | 1 | 13.20 | 32 | instock | 6.55 |
| 427 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4716 | 1 | 18.60 | 32 | instock | 9.23 |
| 413 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4192 | 1 | 17.80 | 32 | instock | 8.92 |
| 373 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4070 | 1 | 23.40 | 32 | instock | 12.21 |
| 175 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4171 | 1 | 7.80 | 32 | instock | 4.15 |
| 538 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5956 | 1 | 17.20 | 32 | instock | 8.80 |
| 276 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5736 | 1 | 14.90 | 32 | instock | 7.31 |
| 534 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4786 | 1 | 12.10 | 32 | instock | 6.56 |
| 196 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6127 | 1 | 10.60 | 32 | instock | 5.42 |
| 180 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4907 | 1 | 22.90 | 32 | instock | 12.42 |
| 273 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5809 | 1 | 17.90 | 32 | instock | 9.71 |
| 671 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4063 | 1 | 14.50 | 33 | instock | 7.19 |
| 249 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4155 | 1 | 14.50 | 33 | instock | 7.27 |
| 573 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6617 | 1 | 9.90 | 33 | instock | 5.22 |
| 491 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6616 | 1 | 15.40 | 33 | instock | 7.88 |
| 663 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4200 | 0 | 5.80 | 33 | instock | 3.12 |
| 665 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5695 | 1 | 6.50 | 33 | instock | 3.53 |
| 643 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4297 | 1 | 19.00 | 33 | instock | 10.31 |
| 546 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4681 | 1 | 7.10 | 33 | instock | 3.56 |
| 193 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5379 | 1 | 11.10 | 33 | instock | 5.68 |
| 407 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5963 | 1 | 13.50 | 34 | instock | 6.63 |
| 658 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4931 | 1 | 27.80 | 34 | instock | 15.08 |
| 414 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4912 | 1 | 25.90 | 34 | instock | 12.98 |
| 655 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4059 | 1 | 8.70 | 34 | instock | 4.32 |
| 408 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4682 | 1 | 9.10 | 34 | instock | 4.84 |
| 164 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5391 | 1 | 24.20 | 34 | instock | 13.00 |
| 335 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5826 | 1 | 41.20 | 34 | instock | 21.71 |
| 371 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4077 | 1 | 22.90 | 34 | instock | 11.95 |
| 693 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4193 | 1 | 13.50 | 34 | instock | 6.91 |
| 357 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5802 | 1 | 23.80 | 34 | instock | 12.54 |
| 504 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4610 | 1 | 13.10 | 34 | instock | 6.50 |
| 204 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4748 | 1 | 14.50 | 35 | instock | 7.42 |
| 307 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4216 | 1 | 13.40 | 35 | instock | 7.20 |
| 547 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4680 | 1 | 6.30 | 35 | instock | 3.29 |
| 69 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5899 | 1 | 28.10 | 35 | instock | 14.37 |
| 594 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4075 | 1 | 14.70 | 35 | instock | 7.97 |
| 569 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4208 | 1 | 7.60 | 35 | instock | 3.77 |
| 445 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4104 | 1 | 9.70 | 35 | instock | 5.11 |
| 266 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5704 | 1 | 16.90 | 35 | instock | 8.30 |
| 522 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5519 | 1 | 12.90 | 35 | instock | 7.00 |
| 521 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4758 | 1 | 24.30 | 35 | instock | 12.93 |
| 438 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4718 | 1 | 18.20 | 35 | instock | 9.78 |
| 584 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4862 | 1 | 9.90 | 35 | instock | 4.86 |
| 441 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4097 | 1 | 12.80 | 35 | instock | 6.48 |
| 220 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4157 | 1 | 12.00 | 36 | instock | 6.45 |
| 172 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4779 | 1 | 7.80 | 36 | instock | 4.07 |
| 517 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4621 | 1 | 16.50 | 36 | instock | 8.53 |
| 354 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4161 | 1 | 11.60 | 36 | instock | 5.81 |
| 353 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4160 | 1 | 9.30 | 36 | instock | 4.85 |
| 329 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4861 | 1 | 8.50 | 36 | instock | 4.17 |
| 599 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4158 | 1 | 18.50 | 36 | instock | 9.94 |
| 208 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4672 | 1 | 17.80 | 36 | instock | 9.56 |
| 652 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4232 | 1 | 11.10 | 37 | instock | 5.62 |
| 447 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4280 | 1 | 18.90 | 37 | instock | 9.57 |
| 552 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4307 | 1 | 10.90 | 37 | instock | 5.80 |
| 261 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5722 | 1 | 7.10 | 38 | instock | 3.48 |
| 264 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4248 | 1 | 14.80 | 38 | instock | 7.49 |
| 657 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4925 | 1 | 23.20 | 38 | instock | 11.39 |
| 700 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6205 | 1 | 20.20 | 38 | instock | 10.54 |
| 409 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4733 | 1 | 16.80 | 38 | instock | 8.42 |
| 331 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4749 | 1 | 11.90 | 38 | instock | 6.46 |
| 520 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5906 | 1 | 19.80 | 38 | instock | 9.72 |
| 424 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6280 | 1 | 10.40 | 38 | instock | 5.53 |
| 571 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4056 | 1 | 12.70 | 38 | instock | 6.36 |
| 132 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4689 | 1 | 12.80 | 38 | instock | 6.68 |
| 666 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5479 | 1 | 10.20 | 38 | instock | 5.16 |
| 670 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4058 | 1 | 8.70 | 39 | instock | 4.72 |
| 364 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4927 | 1 | 6.50 | 39 | instock | 3.29 |
| 360 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4665 | 1 | 14.40 | 39 | instock | 7.59 |
| 485 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4244 | 1 | 13.50 | 39 | instock | 6.63 |
| 338 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4940 | 1 | 20.50 | 39 | instock | 11.02 |
| 443 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5377 | 1 | 19.00 | 39 | instock | 10.01 |
| 124 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5806 | 1 | 17.40 | 39 | instock | 8.99 |
| 537 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5960 | 1 | 12.70 | 40 | instock | 6.36 |
| 510 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4099 | 1 | 12.80 | 40 | instock | 6.41 |
| 291 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5444 | 1 | 15.50 | 40 | instock | 7.69 |
| 376 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4926 | 1 | 7.90 | 40 | instock | 4.04 |
| 638 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7338 | 1 | 16.30 | 40 | instock | 8.00 |
| 234 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5016 | 1 | 9.30 | 40 | instock | 4.81 |
| 286 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4609 | 1 | 11.80 | 40 | instock | 6.04 |
| 287 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4607 | 1 | 13.40 | 41 | instock | 7.13 |
| 476 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5375 | 1 | 15.20 | 41 | instock | 8.09 |
| 144 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4235 | 1 | 17.10 | 41 | instock | 9.01 |
| 557 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4963 | 1 | 7.00 | 41 | instock | 3.44 |
| 173 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4776 | 1 | 6.80 | 42 | instock | 3.48 |
| 35 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4731 | 1 | 22.00 | 42 | instock | 11.03 |
| 34 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6738 | 1 | 15.40 | 42 | instock | 8.12 |
| 380 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4703 | 1 | 19.80 | 42 | instock | 9.72 |
| 185 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5448 | 1 | 7.20 | 42 | instock | 3.76 |
| 604 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4095 | 1 | 12.60 | 42 | instock | 6.31 |
| 704 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4223 | 1 | 9.70 | 42 | instock | 4.81 |
| 512 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4221 | 1 | 12.80 | 42 | instock | 6.48 |
| 681 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4050 | 1 | 21.80 | 42 | instock | 11.26 |
| 698 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4181 | 1 | 11.90 | 43 | instock | 6.21 |
| 633 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4174 | 1 | 5.70 | 43 | instock | 2.92 |
| 473 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4182 | 1 | 16.70 | 43 | instock | 8.46 |
| 433 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4262 | 1 | 15.80 | 43 | instock | 8.33 |
| 641 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4683 | 1 | 9.10 | 43 | instock | 4.84 |
| 248 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4156 | 1 | 20.35 | 44 | instock | 10.30 |
| 403 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5778 | 1 | 5.80 | 44 | instock | 3.09 |
| 410 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5958 | 1 | 8.70 | 44 | instock | 4.50 |
| 194 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6128 | 1 | 10.60 | 45 | instock | 5.64 |
| 691 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4647 | 1 | 28.50 | 45 | instock | 14.14 |
| 277 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4304 | 1 | 8.10 | 45 | instock | 4.19 |
| 687 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4105 | 1 | 6.80 | 45 | instock | 3.51 |
| 479 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4222 | 1 | 8.90 | 45 | instock | 4.74 |
| 212 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5019 | 1 | 19.80 | 45 | instock | 10.43 |
| 423 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5439 | 1 | 13.20 | 46 | instock | 6.68 |
| 610 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4755 | 1 | 7.40 | 47 | instock | 3.98 |
| 125 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5803 | 1 | 17.10 | 47 | instock | 9.19 |
| 432 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4261 | 1 | 9.90 | 48 | instock | 5.01 |
| 654 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4865 | 1 | 9.80 | 48 | instock | 5.16 |
| 478 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4220 | 1 | 11.60 | 48 | instock | 5.75 |
| 401 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6618 | 1 | 13.50 | 49 | instock | 7.18 |
| 635 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4173 | 1 | 5.70 | 49 | instock | 2.97 |
| 362 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4204 | 1 | 11.30 | 50 | instock | 5.96 |
| 437 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4159 | 1 | 9.30 | 51 | instock | 4.90 |
| 176 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5777 | 1 | 5.70 | 51 | instock | 3.03 |
| 651 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4188 | 1 | 9.50 | 51 | instock | 5.06 |
| 392 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6093 | 1 | 12.60 | 51 | instock | 6.71 |
| 553 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4306 | 1 | 10.70 | 52 | instock | 5.31 |
| 645 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4863 | 1 | 8.20 | 54 | instock | 4.11 |
| 449 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6569 | 1 | 29.00 | 58 | instock | 15.28 |
| 239 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4275 | 1 | 14.90 | 62 | instock | 7.78 |
| 195 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6129 | 1 | 5.20 | 68 | instock | 2.74 |
| 14 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4148 | 1 | 37.50 | 71 | instock | 21.88 |
| 126 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4336 | 1 | 35.50 | 73 | instock | 21.12 |
| 363 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4203 | 1 | 9.90 | 74 | instock | 5.01 |
| 4 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5047 | 1 | 22.50 | 76 | instock | 13.78 |
| 64 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5027 | 1 | 62.10 | 79 | instock | 38.04 |
| 141 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4358 | 1 | 77.00 | 81 | instock | 47.16 |
| 75 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4356 | 1 | 51.60 | 81 | instock | 31.00 |
| 13 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4146 | 1 | 29.50 | 86 | instock | 17.55 |
| 16 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4144 | 1 | 49.00 | 91 | instock | 27.73 |
| 79 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4355 | 1 | 12.65 | 97 | instock | 77.48 |
| 258 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5892 | 1 | 191.30 | 98 | instock | 116.06 |
| 46 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4970 | 1 | 49.50 | 100 | instock | 28.59 |
| 422 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4147 | 1 | 33.00 | 100 | instock | 18.48 |
| 31 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4149 | 1 | 69.00 | 101 | instock | 40.25 |
| 146 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5026 | 1 | 86.80 | 101 | instock | 50.13 |
| 63 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5024 | 1 | 45.00 | 103 | instock | 27.04 |
| 140 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4359 | 1 | 85.60 | 112 | instock | 51.93 |
| 38 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4357 | 1 | 39.00 | 115 | instock | 22.30 |
| 617 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4867 | 1 | 9.90 | 121 | instock | 4.86 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.00 | 123 | instock | 24.86 |
| 15 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4150 | 1 | 59.00 | 123 | instock | 35.45 |
| 76 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4348 | 1 | 59.00 | 125 | instock | 34.76 |
| 139 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5761 | 1 | 19.50 | 125 | instock | 12.07 |
| 55 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4142 | 1 | 53.00 | 125 | instock | 32.15 |
| 77 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4353 | 1 | 79.50 | 127 | instock | 45.91 |
| 147 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5025 | 1 | 112.00 | 136 | instock | 68.60 |
| 246 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6126 | 1 | 135.00 | 138 | instock | 80.33 |
| 32 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4334 | 1 | 49.00 | 142 | instock | 30.01 |
| 78 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4350 | 1 | 79.50 | 145 | instock | 47.30 |
| 26 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4337 | 1 | 83.00 | 145 | instock | 48.90 |
#Avons-nous des lignes sans correspondances?
# étant donné que l'on garde uniquement les produits sur le web
#Création d'une Boite à moustache de la répartition des prix grâce à Pandas
df_merge.boxplot(column='price')
plt.show()
#Autre méthode avec plotly express
fig = px.box(df_merge, y='price', title="Répartition des prix")
fig.show()
#Calculer la moyenne du prix
moyenne = round(sum(df_merge['price']) / df_merge['price'].count(), 2)
print(f"Moyenne des prix: {moyenne}")
#Calculer l'écart-type du prix
ecart_type = round(df_merge['price'].std(), 2)
print(f"Variabilité des prix par l'écart-type: {ecart_type}")
#Calculer le Z-score
df_merge['z_score'] = (df_merge['price'] - moyenne) / ecart_type
df_merge.head()
Moyenne des prix: 32.31 Variabilité des prix par l'écart-type: 27.62
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4729 | 1 | 8.6 | 26 | instock | 4.22 | -0.858436 |
| 1 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4634 | 1 | 41.0 | 11 | instock | 20.12 | 0.314627 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.0 | 123 | instock | 24.86 | 0.242216 |
| 3 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5932 | 1 | 59.9 | 13 | instock | 27.18 | 0.998914 |
| 4 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5047 | 1 | 22.5 | 76 | instock | 13.78 | -0.355177 |
#Quel est le seuil prix dont z-score est supérieur à 3?
z_score_outlier = round((moyenne + (ecart_type * 3)), 2)
print(z_score_outlier)
115.17
#Identification par l'interval interquartile
q1 = df_merge['price'].quantile(0.25)
q3 = df_merge['price'].quantile(0.75)
iqr = q3 - q1
outlier_min = max(q1 - 1.5 * iqr, 0)
outlier_max = q3 + 1.5 * iqr
print(q1, q3)
print(f"outlier_min: {outlier_min}, outlier_max: {outlier_max}")
14.037500000000001 42.025 outlier_min: 0, outlier_max: 84.00625
#Utilisation de la fonction describe de Pandas pour l'etude des mesures de dispersions
df_merge.describe()
| virtual | downloadable | rating_count | average_rating | total_sales | post_author | post_date | post_date_gmt | post_modified | post_modified_gmt | post_parent | menu_order | comment_count | product_id | onsale_web | price | stock_quantity | purchase_price | z_score | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| count | 712.0 | 712.0 | 712.0 | 712.0 | 712.000000 | 712.0 | 712 | 712 | 712 | 712 | 712.0 | 712.0 | 712.0 | 712.000000 | 712.000000 | 712.000000 | 712.000000 | 712.000000 | 712.000000 |
| mean | 0.0 | 0.0 | 0.0 | 0.0 | 8.525281 | 2.0 | 2018-08-21 08:33:08.113763840 | 2018-08-21 07:04:29.012640512 | 2020-06-21 22:02:37.813202432 | 2020-06-21 20:09:07.139044864 | 0.0 | 0.0 | 0.0 | 5029.557584 | 0.998596 | 32.312430 | 23.470506 | 16.894635 | 0.000088 |
| min | 0.0 | 0.0 | 0.0 | 0.0 | 0.000000 | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | 0.0 | 0.0 | 3847.000000 | 0.000000 | 5.200000 | 0.000000 | 2.740000 | -0.981535 |
| 25% | 0.0 | 0.0 | 0.0 | 0.0 | 5.000000 | 2.0 | 2018-02-27 14:12:06.750000128 | 2018-02-27 13:12:06.750000128 | 2020-06-19 10:07:33 | 2020-06-19 08:07:33 | 0.0 | 0.0 | 0.0 | 4279.250000 | 1.000000 | 14.037500 | 9.000000 | 7.235000 | -0.661568 |
| 50% | 0.0 | 0.0 | 0.0 | 0.0 | 8.000000 | 2.0 | 2018-04-19 14:44:46.500000 | 2018-04-19 12:44:46.500000 | 2020-08-04 09:30:10.500000 | 2020-08-04 07:30:10.500000 | 0.0 | 0.0 | 0.0 | 4794.500000 | 1.000000 | 23.400000 | 20.000000 | 12.280000 | -0.322592 |
| 75% | 0.0 | 0.0 | 0.0 | 0.0 | 11.000000 | 2.0 | 2019-01-31 14:29:05 | 2019-01-31 13:29:05 | 2020-08-25 10:42:32 | 2020-08-25 08:42:32 | 0.0 | 0.0 | 0.0 | 5709.500000 | 1.000000 | 42.025000 | 30.250000 | 22.030000 | 0.351738 |
| max | 0.0 | 0.0 | 0.0 | 0.0 | 122.000000 | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | 0.0 | 0.0 | 7338.000000 | 1.000000 | 225.000000 | 145.000000 | 137.810000 | 6.976466 |
| std | 0.0 | 0.0 | 0.0 | 0.0 | 8.161136 | 0.0 | NaN | NaN | NaN | NaN | 0.0 | 0.0 | 0.0 | 787.242401 | 0.037477 | 27.620894 | 22.240831 | 14.842603 | 1.000032 |
#Définissez un seuil pour les articles "outliers" en prix
outlier = df_merge.loc[(df_merge['price'] > outlier_max) | (df_merge['price'] < outlier_min)]
outlier.head(len(outlier))
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 22 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4404 | 1 | 108.5 | 17 | instock | 52.22 | 2.758508 |
| 23 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4407 | 1 | 104.0 | 14 | instock | 46.71 | 2.595583 |
| 24 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4402 | 1 | 176.0 | 11 | instock | 78.25 | 5.202390 |
| 33 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4406 | 1 | 157.0 | 12 | instock | 69.08 | 4.514482 |
| 53 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6214 | 1 | 99.0 | 9 | instock | 49.62 | 2.414555 |
| 54 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5008 | 1 | 105.0 | 12 | instock | 56.42 | 2.631789 |
| 56 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4132 | 1 | 88.4 | 7 | instock | 44.30 | 2.030775 |
| 86 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6215 | 1 | 115.0 | 14 | instock | 56.45 | 2.993845 |
| 87 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5007 | 1 | 105.0 | 15 | instock | 55.88 | 2.631789 |
| 88 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4582 | 1 | 109.6 | 18 | instock | 53.80 | 2.798335 |
| 140 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4359 | 1 | 85.6 | 112 | instock | 51.93 | 1.929399 |
| 146 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5026 | 1 | 86.8 | 101 | instock | 50.13 | 1.972846 |
| 147 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5025 | 1 | 112.0 | 136 | instock | 68.60 | 2.885228 |
| 154 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6212 | 1 | 115.0 | 16 | instock | 59.42 | 2.993845 |
| 168 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4904 | 1 | 137.0 | 9 | instock | 67.95 | 3.790369 |
| 198 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5001 | 1 | 217.5 | 18 | instock | 116.87 | 6.704924 |
| 199 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6201 | 1 | 105.6 | 16 | instock | 57.29 | 2.653512 |
| 223 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5918 | 1 | 114.0 | 12 | instock | 52.25 | 2.957639 |
| 224 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5916 | 1 | 93.0 | 1 | instock | 40.49 | 2.197321 |
| 225 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5917 | 1 | 122.0 | 12 | instock | 54.24 | 3.247285 |
| 229 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4903 | 1 | 102.3 | 12 | instock | 51.80 | 2.534033 |
| 245 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5612 | 1 | 124.8 | 19 | instock | 66.41 | 3.348660 |
| 246 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6126 | 1 | 135.0 | 138 | instock | 80.33 | 3.717958 |
| 258 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5892 | 1 | 191.3 | 98 | instock | 116.06 | 5.756336 |
| 269 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6216 | 1 | 121.0 | 14 | instock | 60.02 | 3.211079 |
| 270 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6213 | 1 | 121.0 | 9 | instock | 63.14 | 3.211079 |
| 279 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6202 | 1 | 116.4 | 12 | instock | 63.15 | 3.044533 |
| 300 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5767 | 1 | 175.0 | 12 | instock | 90.42 | 5.166184 |
| 356 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4115 | 1 | 100.0 | 12 | instock | 52.70 | 2.450760 |
| 548 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4352 | 1 | 225.0 | 0 | outofstock | 137.81 | 6.976466 |
| 711 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5565 | 1 | 92.0 | 0 | outofstock | 46.11 | 2.161115 |
#Définissez le nombre d'articles et la proportion de l'ensemble du catalogue "outliers"
nb_outlier = len(outlier)
proportion_outlier = round((len(outlier) / len(df_merge['price'])) * 100, 2)
print(f"il y a {nb_outlier} outlier pour une proportion de {proportion_outlier}%")
il y a 31 outlier pour une proportion de 4.35%
#Selon vous, ces outliers sont-ils justifiés ? Comment le démontrer si cela est possible ?
#Dans l'industrie du vin certain produit peuvent être très rare car une cuvée ne sera jamais la même est donc chaque année est unique
##############################
# Calculer le CA su site web #
##############################
#Créez une colonne calculant le CA par article
df_merge["ca_par_article"] = df_merge['price'] * df_merge['total_sales']
#Calculez la somme de la colonne "ca_par_article"
somme = round(df_merge["ca_par_article"].sum(), 2)
#Ce résultat correspond au chiffre d'affaire du site web
print(f"Le chiffre d'affaire du site est de {somme}€")
Le chiffre d'affaire du site est de 153353.9€
###############################
# Palmares des articles en CA #
###############################
#Effectuer le tri dans l'ordre décroissant du CA du dataset df_merge
df_merge_sorted = df_merge.sort_values(by='ca_par_article', ascending=False)
#Réinitialiser l'index du dataset par un reset_index
#Afficher les 20 premier articles en CA
top_20 = df_merge_sorted.head(20)
fig = px.bar(
top_20,
x='ca_par_article',
y=top_20['post_title'],
title="Top 20 des articles par chiffre d'affaires",
labels={'post_title': 'Article', 'ca_par_article': 'Chiffre d\'affaires'},
text_auto=True
)
fig.update_traces(width=0.8)
fig.update_layout(
width=1000,
height=600,
xaxis_tickangle=-45,
yaxis={'categoryorder': 'total ascending'}
)
fig.show()
#############################
# Calculer le 20 / 80 en CA #
#############################
#Créer une colonne calculant la part du CA de la ligne dans le dataset
df_merge['pourcentage_ca'] = round((df_merge['ca_par_article'] / somme) * 100, 3)
#Créer une colonne réalisant la somme cumulative de la colonne précedemment créée
df_merge_sorted = df_merge.sort_values(by='pourcentage_ca', ascending=False)
df_merge_sorted['cumul_somme'] = df_merge_sorted['pourcentage_ca'].cumsum()
#Grâce au deux colonnes créées précedemment, calculer le nombre d'articles représentant 80% du CA
total_80 = 0
l =[]
for i in df_merge_sorted['pourcentage_ca']:
if total_80 < 80:
total_80 += i
l.append(i)
#Afficher la proportion que représentent ce groupe d'articles dans le catalogue entier du site web
round(total_80, 2)
print(len(l))
nb_produit = df_merge['id_web'].count()
pourcentage_produit_80_catalogue = round(len(l) / nb_produit * 100, 2)
print(f"{round(total_80, 2)}% du chiffre d'affaire est réalisé par {pourcentage_produit_80_catalogue}% du catalogue")
df_merge_sorted.head()
420 80.05% du chiffre d'affaire est réalisé par 58.99% du catalogue
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | cumul_somme | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 15 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4150 | 1 | 59.0 | 123 | instock | 35.45 | 0.966329 | 6844.0 | 4.463 | 4.463 |
| 548 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4352 | 1 | 225.0 | 0 | outofstock | 137.81 | 6.976466 | 2475.0 | 1.614 | 6.077 |
| 251 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4726 | 1 | 12.7 | 0 | outofstock | 6.82 | -0.709993 | 1549.4 | 1.010 | 7.087 |
| 346 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5067 | 1 | 59.9 | 3 | instock | 30.95 | 0.998914 | 1317.8 | 0.859 | 7.946 |
| 193 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5379 | 1 | 11.1 | 33 | instock | 5.68 | -0.767922 | 1232.1 | 0.803 | 8.749 |
#####################################
# Palmares des articles en quantité #
#####################################
#Effectuer le tri dans l'ordre décroissant de quantités vendues du dataset df_merge
df_merge_sorted_sell = df_merge.sort_values(by='total_sales', ascending=False).reset_index(drop=True)
#Réinitialiser l'index du dataset par un reset_index
#Afficher les 20 premier articles en quantité
#Graphique en barre des 20 premiers articles avec plotly express
fig = px.bar(
df_merge_sorted_sell.head(20),
x='total_sales',
y=top_20['post_title'],
title="Top 20 des articles par nombre de vente",
labels={'y': 'Article', 'total_sales': 'Nombre de ventes'},
text_auto=True
)
fig.update_traces(width=0.8)
fig.update_layout(
width=1000,
height=600,
xaxis_tickangle=-45,
yaxis={'categoryorder': 'total ascending'}
)
fig.show()
#############################
# Calculer le 20 / 80 en CA #
#############################
total_ventes = df_merge['total_sales'].sum()
print(f"Il y a eu {total_ventes} ventes")
#Créer une colonne calculant la part en quantité de la ligne dans le dataset
df_merge_sorted_sell['pourcentage_total_sales'] = df_merge_sorted_sell['total_sales'] / total_ventes * 100
#Créer une colonne réalisant la somme cumulative de la colonne précedemment créée
df_merge_sorted_sell['cumul_pourcentage_total_sales'] = df_merge_sorted_sell['pourcentage_total_sales'].cumsum()
#Grâce au deux colonnes créées précedemment, calculer le nombre d'articles représentant 80% des ventes en quantité
total_80 = 0
l = []
for i in df_merge_sorted_sell['pourcentage_total_sales']:
if total_80 < 80:
total_80 += i
l.append(i)
#Afficher la proportion que représentent ce groupe d'articles dans le catalogue entier du site web
proportion_article = round(len(l) / nb_produit * 100, 2)
print(f"{round(total_80, 2)}% des ventes de la boutique sont réalisé par {proportion_article}% des produits")
Il y a eu 6070.0 ventes 80.08% des ventes de la boutique sont réalisé par 59.55% des produits
######################################
# Calcule le nombre de mois de stock #
######################################
#Import de numpy
import numpy as np
#Création de la colonne Rotation de stock
df_merge['stock_debut_mois'] = df_merge['stock_quantity'] + df_merge['total_sales']
stock_moyen = (df_merge['stock_debut_mois'] + df_merge['stock_quantity']) / 2
stock_moyen_valeur = stock_moyen * df_merge['purchase_price']
cmv = df_merge['total_sales'] * df_merge['purchase_price']
df_merge['rotation_stock'] = cmv / stock_moyen_valeur
#Remplacement des "inf" par 0
df_merge['rotation_stock'] = df_merge['rotation_stock'].fillna(0)
#Effectuer le tri dans l'ordre décroissant du nombre de mois de stock dans le dataset df_merge
df_merge_rotation_sup_0 = df_merge.loc[df_merge['rotation_stock'] > 0]
df_flop_20 = df_merge_rotation_sup_0.sort_values(by='rotation_stock', ascending=True)
#Graphique en barre du flop 20 des produits qui ont le plus de mois de stock
fig = px.bar(
df_flop_20.head(20),
x='rotation_stock',
y='post_title',
title="Flop 20 des produits qui ont le plus de mois de stock",
text_auto=True,
labels={'post_title': 'Article', 'rotation_stock': 'Ecoulement du stock par mois'}
)
fig.update_traces(width=1)
fig.update_layout(
width=1000,
height=500,
xaxis_tickangle=-45,
yaxis={'categoryorder': 'total descending'}
)
fig.show()
df_flop_20.head(25)
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | stock_debut_mois | rotation_stock | valorisation_stock_euros | prix_ht | taux_de_marge | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 55 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4142 | 1 | 53.0 | 125 | instock | 32.15 | 0.749095 | 212.0 | 0.138 | 129.0 | 0.031496 | 6625.0 | 42.40 | 24.174528 |
| 246 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6126 | 1 | 135.0 | 138 | instock | 80.33 | 3.717958 | 675.0 | 0.440 | 143.0 | 0.035587 | 18630.0 | 108.00 | 25.620370 |
| 75 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4356 | 1 | 51.6 | 81 | instock | 31.00 | 0.698407 | 154.8 | 0.101 | 84.0 | 0.036364 | 4179.6 | 41.28 | 24.903101 |
| 76 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4348 | 1 | 59.0 | 125 | instock | 34.76 | 0.966329 | 295.0 | 0.192 | 130.0 | 0.039216 | 7375.0 | 47.20 | 26.355932 |
| 14 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4148 | 1 | 37.5 | 71 | instock | 21.88 | 0.187907 | 112.5 | 0.073 | 74.0 | 0.041379 | 2662.5 | 30.00 | 27.066667 |
| 38 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4357 | 1 | 39.0 | 115 | instock | 22.30 | 0.242216 | 195.0 | 0.127 | 120.0 | 0.042553 | 4485.0 | 31.20 | 28.525641 |
| 16 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4144 | 1 | 49.0 | 91 | instock | 27.73 | 0.604272 | 196.0 | 0.128 | 95.0 | 0.043011 | 4459.0 | 39.20 | 29.260204 |
| 147 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5025 | 1 | 112.0 | 136 | instock | 68.60 | 2.885228 | 672.0 | 0.438 | 142.0 | 0.043165 | 15232.0 | 89.60 | 23.437500 |
| 78 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4350 | 1 | 79.5 | 145 | instock | 47.30 | 1.708545 | 556.5 | 0.363 | 152.0 | 0.047138 | 11527.5 | 63.60 | 25.628931 |
| 32 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4334 | 1 | 49.0 | 142 | instock | 30.01 | 0.604272 | 343.0 | 0.224 | 149.0 | 0.048110 | 6958.0 | 39.20 | 23.443878 |
| 31 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4149 | 1 | 69.0 | 101 | instock | 40.25 | 1.328385 | 345.0 | 0.225 | 106.0 | 0.048309 | 6969.0 | 55.20 | 27.083333 |
| 245 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5612 | 1 | 124.8 | 19 | instock | 66.41 | 3.348660 | 124.8 | 0.081 | 20.0 | 0.051282 | 2371.2 | 99.84 | 33.483574 |
| 88 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4582 | 1 | 109.6 | 18 | instock | 53.80 | 2.798335 | 109.6 | 0.071 | 19.0 | 0.054054 | 1972.8 | 87.68 | 38.640511 |
| 63 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5024 | 1 | 45.0 | 103 | instock | 27.04 | 0.459450 | 270.0 | 0.176 | 109.0 | 0.056604 | 4635.0 | 36.00 | 24.888889 |
| 46 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4970 | 1 | 49.5 | 100 | instock | 28.59 | 0.622375 | 297.0 | 0.194 | 106.0 | 0.058252 | 4950.0 | 39.60 | 27.803030 |
| 258 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5892 | 1 | 191.3 | 98 | instock | 116.06 | 5.756336 | 1147.8 | 0.748 | 104.0 | 0.059406 | 18747.4 | 153.04 | 24.163617 |
| 140 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4359 | 1 | 85.6 | 112 | instock | 51.93 | 1.929399 | 599.2 | 0.391 | 119.0 | 0.060606 | 9587.2 | 68.48 | 24.167640 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.0 | 123 | instock | 24.86 | 0.242216 | 312.0 | 0.203 | 131.0 | 0.062992 | 4797.0 | 31.20 | 20.320513 |
| 13 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4146 | 1 | 29.5 | 86 | instock | 17.55 | -0.101738 | 177.0 | 0.115 | 92.0 | 0.067416 | 2537.0 | 23.60 | 25.635593 |
| 64 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5027 | 1 | 62.1 | 79 | instock | 38.04 | 1.078566 | 372.6 | 0.243 | 85.0 | 0.073171 | 4905.9 | 49.68 | 23.429952 |
| 139 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5761 | 1 | 19.5 | 125 | instock | 12.07 | -0.463794 | 195.0 | 0.127 | 135.0 | 0.076923 | 2437.5 | 15.60 | 22.628205 |
| 422 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4147 | 1 | 33.0 | 100 | instock | 18.48 | 0.024982 | 264.0 | 0.172 | 108.0 | 0.076923 | 3300.0 | 26.40 | 30.000000 |
| 126 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4336 | 1 | 35.5 | 73 | instock | 21.12 | 0.115496 | 213.0 | 0.139 | 79.0 | 0.078947 | 2591.5 | 28.40 | 25.633803 |
| 356 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4115 | 1 | 100.0 | 12 | instock | 52.70 | 2.450760 | 100.0 | 0.065 | 13.0 | 0.080000 | 1200.0 | 80.00 | 34.125000 |
| 146 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5026 | 1 | 86.8 | 101 | instock | 50.13 | 1.972846 | 781.2 | 0.509 | 110.0 | 0.085308 | 8766.8 | 69.44 | 27.808180 |
####################################
# Valorisation des stocks en euros #
####################################
#Création de la colonne Valorisation des stocks en euros
df_merge['valorisation_stock_euros'] = df_merge['stock_quantity'] * df_merge['price']
#Calculer la somme de la colonne "Valorisation_stock_euros"
somme_valorisation = df_merge['valorisation_stock_euros'].sum()
print(f"La valorisation du stock est de: {somme_valorisation}€")
La valorisation du stock est de: 493734.1€
##############################################
# Valorisation du nombre de produit en stock #
##############################################
#Calculer la somme de la colonne stock quantity
somme_nb_articles = df_merge['stock_quantity'].sum()
print(f"il y a {somme_nb_articles} articles")
il y a 16711 articles
############################
# Analyse du taux de marge #
############################
#Création de la colonne prix HT
calcul_ht = df_merge['price'] * 0.20
df_merge['prix_ht'] = df_merge['price'] - calcul_ht
#Création de la colonne Taux de marge
taux_de_marge = (df_merge['prix_ht'] - df_merge['purchase_price']) / df_merge['prix_ht'] * 100
#Afficher le prix minimum de la colonne "taux_marge"
df_merge['taux_de_marge'] = taux_de_marge
#Afficher le prix maximum de la colonne "taux_marge"
df_merge.head(len(df_merge))
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | stock_debut_mois | rotation_stock | valorisation_stock_euros | prix_ht | taux_de_marge | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4729 | 1 | 8.60 | 26 | instock | 4.22 | -0.858436 | 86.00 | 0.056 | 36.0 | 0.322581 | 223.60 | 6.88 | 38.662791 |
| 1 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4634 | 1 | 41.00 | 11 | instock | 20.12 | 0.314627 | 246.00 | 0.160 | 17.0 | 0.428571 | 451.00 | 32.80 | 38.658537 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.00 | 123 | instock | 24.86 | 0.242216 | 312.00 | 0.203 | 131.0 | 0.062992 | 4797.00 | 31.20 | 20.320513 |
| 3 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5932 | 1 | 59.90 | 13 | instock | 27.18 | 0.998914 | 0.00 | 0.000 | 13.0 | 0.000000 | 778.70 | 47.92 | 43.280467 |
| 4 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5047 | 1 | 22.50 | 76 | instock | 13.78 | -0.355177 | 180.00 | 0.117 | 84.0 | 0.100000 | 1710.00 | 18.00 | 23.444444 |
| 5 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4631 | 1 | 76.80 | 1 | instock | 38.49 | 1.610789 | 76.80 | 0.050 | 2.0 | 0.666667 | 76.80 | 61.44 | 37.353516 |
| 6 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4630 | 1 | 62.40 | 1 | instock | 33.21 | 1.089428 | 62.40 | 0.041 | 2.0 | 0.666667 | 62.40 | 49.92 | 33.473558 |
| 7 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4635 | 1 | 62.40 | 12 | instock | 31.92 | 1.089428 | 499.20 | 0.326 | 20.0 | 0.500000 | 748.80 | 49.92 | 36.057692 |
| 8 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4628 | 1 | 39.60 | 8 | instock | 21.07 | 0.263939 | 198.00 | 0.129 | 13.0 | 0.476190 | 316.80 | 31.68 | 33.491162 |
| 9 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4633 | 1 | 52.40 | 5 | instock | 27.61 | 0.727371 | 157.20 | 0.103 | 8.0 | 0.461538 | 262.00 | 41.92 | 34.136450 |
| 10 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4627 | 1 | 58.30 | 2 | instock | 28.62 | 0.940985 | 116.60 | 0.076 | 4.0 | 0.666667 | 116.60 | 46.64 | 38.636364 |
| 11 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4626 | 1 | 52.90 | 4 | instock | 27.88 | 0.745474 | 105.80 | 0.069 | 6.0 | 0.400000 | 211.60 | 42.32 | 34.120983 |
| 12 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4625 | 1 | 52.40 | 4 | instock | 28.16 | 0.727371 | 157.20 | 0.103 | 7.0 | 0.545455 | 209.60 | 41.92 | 32.824427 |
| 13 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4146 | 1 | 29.50 | 86 | instock | 17.55 | -0.101738 | 177.00 | 0.115 | 92.0 | 0.067416 | 2537.00 | 23.60 | 25.635593 |
| 14 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4148 | 1 | 37.50 | 71 | instock | 21.88 | 0.187907 | 112.50 | 0.073 | 74.0 | 0.041379 | 2662.50 | 30.00 | 27.066667 |
| 15 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4150 | 1 | 59.00 | 123 | instock | 35.45 | 0.966329 | 6844.00 | 4.463 | 239.0 | 0.640884 | 7257.00 | 47.20 | 24.894068 |
| 16 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4144 | 1 | 49.00 | 91 | instock | 27.73 | 0.604272 | 196.00 | 0.128 | 95.0 | 0.043011 | 4459.00 | 39.20 | 29.260204 |
| 17 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4632 | 1 | 50.00 | 9 | instock | 26.87 | 0.640478 | 350.00 | 0.228 | 16.0 | 0.560000 | 450.00 | 40.00 | 32.825000 |
| 18 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4636 | 1 | 50.00 | 0 | outofstock | 25.58 | 0.640478 | 200.00 | 0.130 | 4.0 | 2.000000 | 0.00 | 40.00 | 36.050000 |
| 19 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4629 | 1 | 52.40 | 7 | instock | 27.07 | 0.727371 | 209.60 | 0.137 | 11.0 | 0.444444 | 366.80 | 41.92 | 35.424618 |
| 20 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5383 | 1 | 19.50 | 10 | instock | 10.18 | -0.463794 | 58.50 | 0.038 | 13.0 | 0.260870 | 195.00 | 15.60 | 34.743590 |
| 21 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4401 | 1 | 62.50 | 5 | instock | 27.21 | 1.093049 | 187.50 | 0.122 | 8.0 | 0.461538 | 312.50 | 50.00 | 45.580000 |
| 22 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4404 | 1 | 108.50 | 17 | instock | 52.22 | 2.758508 | 434.00 | 0.283 | 21.0 | 0.210526 | 1844.50 | 86.80 | 39.838710 |
| 23 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4407 | 1 | 104.00 | 14 | instock | 46.71 | 2.595583 | 520.00 | 0.339 | 19.0 | 0.303030 | 1456.00 | 83.20 | 43.858173 |
| 24 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4402 | 1 | 176.00 | 11 | instock | 78.25 | 5.202390 | 528.00 | 0.344 | 14.0 | 0.240000 | 1936.00 | 140.80 | 44.424716 |
| 25 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4795 | 1 | 12.00 | 32 | instock | 6.08 | -0.735337 | 156.00 | 0.102 | 45.0 | 0.337662 | 384.00 | 9.60 | 36.666667 |
| 26 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4337 | 1 | 83.00 | 145 | instock | 48.90 | 1.835264 | 0.00 | 0.000 | 145.0 | 0.000000 | 12035.00 | 66.40 | 26.355422 |
| 27 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4730 | 1 | 14.30 | 31 | instock | 7.24 | -0.652064 | 157.30 | 0.103 | 42.0 | 0.301370 | 443.30 | 11.44 | 36.713287 |
| 28 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4253 | 1 | 59.60 | 5 | instock | 30.18 | 0.988052 | 298.00 | 0.194 | 10.0 | 0.666667 | 298.00 | 47.68 | 36.703020 |
| 29 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6222 | 1 | 26.40 | 29 | instock | 13.23 | -0.213975 | 264.00 | 0.172 | 39.0 | 0.294118 | 765.60 | 21.12 | 37.357955 |
| 30 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5756 | 1 | 42.20 | 9 | instock | 25.85 | 0.358074 | 211.00 | 0.138 | 14.0 | 0.434783 | 379.80 | 33.76 | 23.430095 |
| 31 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4149 | 1 | 69.00 | 101 | instock | 40.25 | 1.328385 | 345.00 | 0.225 | 106.0 | 0.048309 | 6969.00 | 55.20 | 27.083333 |
| 32 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4334 | 1 | 49.00 | 142 | instock | 30.01 | 0.604272 | 343.00 | 0.224 | 149.0 | 0.048110 | 6958.00 | 39.20 | 23.443878 |
| 33 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4406 | 1 | 157.00 | 12 | instock | 69.08 | 4.514482 | 628.00 | 0.410 | 16.0 | 0.285714 | 1884.00 | 125.60 | 45.000000 |
| 34 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6738 | 1 | 15.40 | 42 | instock | 8.12 | -0.612238 | 184.80 | 0.121 | 54.0 | 0.250000 | 646.80 | 12.32 | 34.090909 |
| 35 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4731 | 1 | 22.00 | 42 | instock | 11.03 | -0.373280 | 264.00 | 0.172 | 54.0 | 0.250000 | 924.00 | 17.60 | 37.329545 |
| 36 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5629 | 1 | 10.30 | 28 | instock | 5.06 | -0.796886 | 133.90 | 0.087 | 41.0 | 0.376812 | 288.40 | 8.24 | 38.592233 |
| 37 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5574 | 1 | 59.60 | 2 | instock | 30.18 | 0.988052 | 119.20 | 0.078 | 4.0 | 0.666667 | 119.20 | 47.68 | 36.703020 |
| 38 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4357 | 1 | 39.00 | 115 | instock | 22.30 | 0.242216 | 195.00 | 0.127 | 120.0 | 0.042553 | 4485.00 | 31.20 | 28.525641 |
| 39 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4396 | 1 | 62.00 | 0 | outofstock | 28.42 | 1.074946 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 49.60 | 42.701613 |
| 40 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4932 | 1 | 25.70 | 5 | instock | 12.75 | -0.239319 | 51.40 | 0.034 | 7.0 | 0.333333 | 128.50 | 20.56 | 37.986381 |
| 41 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5913 | 1 | 36.00 | 7 | instock | 17.16 | 0.133599 | 360.00 | 0.235 | 17.0 | 0.833333 | 252.00 | 28.80 | 40.416667 |
| 42 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4617 | 1 | 67.50 | 6 | instock | 35.57 | 1.274077 | 270.00 | 0.176 | 10.0 | 0.500000 | 405.00 | 54.00 | 34.129630 |
| 43 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4709 | 1 | 44.00 | 7 | instock | 22.05 | 0.423244 | 264.00 | 0.172 | 13.0 | 0.600000 | 308.00 | 35.20 | 37.357955 |
| 44 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4656 | 1 | 43.00 | 13 | instock | 22.88 | 0.387038 | 301.00 | 0.196 | 20.0 | 0.424242 | 559.00 | 34.40 | 33.488372 |
| 45 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4619 | 1 | 59.00 | 8 | instock | 32.01 | 0.966329 | 236.00 | 0.154 | 12.0 | 0.400000 | 472.00 | 47.20 | 32.182203 |
| 46 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4970 | 1 | 49.50 | 100 | instock | 28.59 | 0.622375 | 297.00 | 0.194 | 106.0 | 0.058252 | 4950.00 | 39.60 | 27.803030 |
| 47 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5760 | 1 | 13.10 | 24 | instock | 8.43 | -0.695510 | 91.70 | 0.060 | 31.0 | 0.254545 | 314.40 | 10.48 | 19.561069 |
| 48 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5801 | 1 | 24.00 | 22 | instock | 12.90 | -0.300869 | 216.00 | 0.141 | 31.0 | 0.339623 | 528.00 | 19.20 | 32.812500 |
| 49 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4391 | 1 | 49.50 | 7 | instock | 22.01 | 0.622375 | 247.50 | 0.161 | 12.0 | 0.526316 | 346.50 | 39.60 | 44.419192 |
| 50 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4364 | 1 | 49.50 | 4 | instock | 23.60 | 0.622375 | 148.50 | 0.097 | 7.0 | 0.545455 | 198.00 | 39.60 | 40.404040 |
| 51 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4392 | 1 | 49.50 | 3 | instock | 22.01 | 0.622375 | 148.50 | 0.097 | 6.0 | 0.666667 | 148.50 | 39.60 | 44.419192 |
| 52 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4395 | 1 | 27.50 | 9 | instock | 13.11 | -0.174149 | 192.50 | 0.126 | 16.0 | 0.560000 | 247.50 | 22.00 | 40.409091 |
| 53 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6214 | 1 | 99.00 | 9 | instock | 49.62 | 2.414555 | 594.00 | 0.387 | 15.0 | 0.500000 | 891.00 | 79.20 | 37.348485 |
| 54 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5008 | 1 | 105.00 | 12 | instock | 56.42 | 2.631789 | 735.00 | 0.479 | 19.0 | 0.451613 | 1260.00 | 84.00 | 32.833333 |
| 55 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4142 | 1 | 53.00 | 125 | instock | 32.15 | 0.749095 | 212.00 | 0.138 | 129.0 | 0.031496 | 6625.00 | 42.40 | 24.174528 |
| 56 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4132 | 1 | 88.40 | 7 | instock | 44.30 | 2.030775 | 442.00 | 0.288 | 12.0 | 0.526316 | 618.80 | 70.72 | 37.358597 |
| 57 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5967 | 1 | 56.30 | 5 | instock | 30.54 | 0.868573 | 168.90 | 0.110 | 8.0 | 0.461538 | 281.50 | 45.04 | 32.193606 |
| 58 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5703 | 1 | 29.40 | 23 | instock | 15.95 | -0.105358 | 294.00 | 0.192 | 33.0 | 0.357143 | 676.20 | 23.52 | 32.185374 |
| 59 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4657 | 1 | 43.00 | 3 | instock | 21.55 | 0.387038 | 129.00 | 0.084 | 6.0 | 0.666667 | 129.00 | 34.40 | 37.354651 |
| 60 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4651 | 1 | 49.00 | 7 | instock | 24.81 | 0.604272 | 343.00 | 0.224 | 14.0 | 0.666667 | 343.00 | 39.20 | 36.709184 |
| 61 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4069 | 1 | 60.00 | 4 | instock | 30.07 | 1.002534 | 180.00 | 0.117 | 7.0 | 0.545455 | 240.00 | 48.00 | 37.354167 |
| 62 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5819 | 1 | 56.00 | 6 | instock | 28.07 | 0.857712 | 224.00 | 0.146 | 10.0 | 0.500000 | 336.00 | 44.80 | 37.343750 |
| 63 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5024 | 1 | 45.00 | 103 | instock | 27.04 | 0.459450 | 270.00 | 0.176 | 109.0 | 0.056604 | 4635.00 | 36.00 | 24.888889 |
| 64 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5027 | 1 | 62.10 | 79 | instock | 38.04 | 1.078566 | 372.60 | 0.243 | 85.0 | 0.073171 | 4905.90 | 49.68 | 23.429952 |
| 65 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4072 | 1 | 32.00 | 8 | instock | 15.71 | -0.011224 | 160.00 | 0.104 | 13.0 | 0.476190 | 256.00 | 25.60 | 38.632812 |
| 66 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5445 | 1 | 16.30 | 18 | instock | 8.00 | -0.579652 | 130.40 | 0.085 | 26.0 | 0.363636 | 293.40 | 13.04 | 38.650307 |
| 67 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4254 | 1 | 26.90 | 20 | instock | 14.59 | -0.195873 | 242.10 | 0.158 | 29.0 | 0.367347 | 538.00 | 21.52 | 32.202602 |
| 68 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5398 | 1 | 39.00 | 8 | instock | 21.16 | 0.242216 | 234.00 | 0.153 | 14.0 | 0.545455 | 312.00 | 31.20 | 32.179487 |
| 69 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5899 | 1 | 28.10 | 35 | instock | 14.37 | -0.152426 | 309.10 | 0.202 | 46.0 | 0.271605 | 983.50 | 22.48 | 36.076512 |
| 70 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5630 | 1 | 28.00 | 23 | instock | 14.61 | -0.156046 | 280.00 | 0.183 | 33.0 | 0.357143 | 644.00 | 22.40 | 34.776786 |
| 71 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5628 | 1 | 25.00 | 15 | instock | 12.79 | -0.264663 | 125.00 | 0.082 | 20.0 | 0.285714 | 375.00 | 20.00 | 36.050000 |
| 72 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4257 | 1 | 31.70 | 16 | instock | 17.20 | -0.022085 | 317.00 | 0.207 | 26.0 | 0.476190 | 507.20 | 25.36 | 32.176656 |
| 73 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5393 | 1 | 35.30 | 7 | instock | 18.06 | 0.108255 | 141.20 | 0.092 | 11.0 | 0.444444 | 247.10 | 28.24 | 36.048159 |
| 74 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5397 | 1 | 24.00 | 24 | instock | 12.40 | -0.300869 | 192.00 | 0.125 | 32.0 | 0.285714 | 576.00 | 19.20 | 35.416667 |
| 75 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4356 | 1 | 51.60 | 81 | instock | 31.00 | 0.698407 | 154.80 | 0.101 | 84.0 | 0.036364 | 4179.60 | 41.28 | 24.903101 |
| 76 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4348 | 1 | 59.00 | 125 | instock | 34.76 | 0.966329 | 295.00 | 0.192 | 130.0 | 0.039216 | 7375.00 | 47.20 | 26.355932 |
| 77 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4353 | 1 | 79.50 | 127 | instock | 45.91 | 1.708545 | 1113.00 | 0.726 | 141.0 | 0.104478 | 10096.50 | 63.60 | 27.814465 |
| 78 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4350 | 1 | 79.50 | 145 | instock | 47.30 | 1.708545 | 556.50 | 0.363 | 152.0 | 0.047138 | 11527.50 | 63.60 | 25.628931 |
| 79 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4355 | 1 | 12.65 | 97 | instock | 77.48 | -0.711803 | 0.00 | 0.000 | 97.0 | 0.000000 | 1227.05 | 10.12 | -665.612648 |
| 80 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4219 | 1 | 16.70 | 25 | instock | 8.97 | -0.565170 | 200.40 | 0.131 | 37.0 | 0.387097 | 417.50 | 13.36 | 32.859281 |
| 81 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4397 | 1 | 59.00 | 5 | instock | 27.31 | 0.966329 | 177.00 | 0.115 | 8.0 | 0.461538 | 295.00 | 47.20 | 42.139831 |
| 82 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4399 | 1 | 59.00 | 10 | instock | 28.12 | 0.966329 | 354.00 | 0.231 | 16.0 | 0.461538 | 590.00 | 47.20 | 40.423729 |
| 83 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4398 | 1 | 59.00 | 10 | instock | 28.39 | 0.966329 | 413.00 | 0.269 | 17.0 | 0.518519 | 590.00 | 47.20 | 39.851695 |
| 84 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4228 | 1 | 29.90 | 30 | instock | 16.07 | -0.087256 | 269.10 | 0.175 | 39.0 | 0.260870 | 897.00 | 23.92 | 32.817726 |
| 85 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4794 | 1 | 41.60 | 14 | instock | 22.14 | 0.336350 | 374.40 | 0.244 | 23.0 | 0.486486 | 582.40 | 33.28 | 33.473558 |
| 86 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6215 | 1 | 115.00 | 14 | instock | 56.45 | 2.993845 | 460.00 | 0.300 | 18.0 | 0.250000 | 1610.00 | 92.00 | 38.641304 |
| 87 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5007 | 1 | 105.00 | 15 | instock | 55.88 | 2.631789 | 315.00 | 0.205 | 18.0 | 0.181818 | 1575.00 | 84.00 | 33.476190 |
| 88 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4582 | 1 | 109.60 | 18 | instock | 53.80 | 2.798335 | 109.60 | 0.071 | 19.0 | 0.054054 | 1972.80 | 87.68 | 38.640511 |
| 89 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5900 | 1 | 18.25 | 21 | instock | 8.96 | -0.509051 | 127.75 | 0.083 | 28.0 | 0.285714 | 383.25 | 14.60 | 38.630137 |
| 90 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5905 | 1 | 43.90 | 6 | instock | 22.23 | 0.419623 | 263.40 | 0.172 | 12.0 | 0.666667 | 263.40 | 35.12 | 36.702733 |
| 91 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5907 | 1 | 17.70 | 14 | instock | 9.42 | -0.528965 | 106.20 | 0.069 | 20.0 | 0.352941 | 247.80 | 14.16 | 33.474576 |
| 92 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4274 | 1 | 12.90 | 0 | outofstock | 6.33 | -0.702752 | 103.20 | 0.067 | 8.0 | 2.000000 | 0.00 | 10.32 | 38.662791 |
| 93 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4196 | 1 | 27.20 | 0 | outofstock | 14.05 | -0.185011 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 21.76 | 35.431985 |
| 94 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4902 | 1 | 46.00 | 15 | instock | 23.53 | 0.495655 | 368.00 | 0.240 | 23.0 | 0.421053 | 690.00 | 36.80 | 36.059783 |
| 95 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4076 | 1 | 14.05 | 32 | instock | 6.90 | -0.661115 | 182.65 | 0.119 | 45.0 | 0.337662 | 449.60 | 11.24 | 38.612100 |
| 96 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6041 | 1 | 71.70 | 11 | instock | 36.30 | 1.426140 | 430.20 | 0.281 | 17.0 | 0.428571 | 788.70 | 57.36 | 36.715481 |
| 97 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4073 | 1 | 77.80 | 8 | instock | 40.60 | 1.646995 | 311.20 | 0.203 | 12.0 | 0.400000 | 622.40 | 62.24 | 34.768638 |
| 98 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4079 | 1 | 37.00 | 0 | outofstock | 19.50 | 0.169804 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 29.60 | 34.121622 |
| 99 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4272 | 1 | 9.20 | 26 | instock | 4.85 | -0.836713 | 119.60 | 0.078 | 39.0 | 0.400000 | 239.20 | 7.36 | 34.103261 |
| 100 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4780 | 1 | 13.70 | 32 | instock | 6.72 | -0.673787 | 137.00 | 0.089 | 42.0 | 0.270270 | 438.40 | 10.96 | 38.686131 |
| 101 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4081 | 1 | 39.00 | 6 | instock | 19.14 | 0.242216 | 156.00 | 0.102 | 10.0 | 0.500000 | 234.00 | 31.20 | 38.653846 |
| 102 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4053 | 1 | 44.30 | 7 | instock | 22.20 | 0.434106 | 221.50 | 0.144 | 12.0 | 0.526316 | 310.10 | 35.44 | 37.358916 |
| 103 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4303 | 1 | 30.00 | 15 | instock | 15.19 | -0.083635 | 300.00 | 0.196 | 25.0 | 0.500000 | 450.00 | 24.00 | 36.708333 |
| 104 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4137 | 1 | 29.80 | 18 | instock | 15.86 | -0.090876 | 208.60 | 0.136 | 25.0 | 0.325581 | 536.40 | 23.84 | 33.473154 |
| 105 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5969 | 1 | 69.00 | 10 | instock | 37.43 | 1.328385 | 414.00 | 0.270 | 16.0 | 0.461538 | 690.00 | 55.20 | 32.192029 |
| 106 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5968 | 1 | 71.50 | 9 | instock | 35.83 | 1.418899 | 357.50 | 0.233 | 14.0 | 0.434783 | 643.50 | 57.20 | 37.360140 |
| 107 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4139 | 1 | 77.40 | 1 | instock | 39.59 | 1.632513 | 77.40 | 0.050 | 2.0 | 0.666667 | 77.40 | 61.92 | 36.062661 |
| 108 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4405 | 1 | 68.10 | 15 | instock | 32.46 | 1.295800 | 476.70 | 0.311 | 22.0 | 0.378378 | 1021.50 | 54.48 | 40.418502 |
| 109 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5795 | 1 | 23.00 | 16 | instock | 11.29 | -0.337075 | 138.00 | 0.090 | 22.0 | 0.315789 | 368.00 | 18.40 | 38.641304 |
| 110 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4978 | 1 | 18.50 | 23 | instock | 9.46 | -0.500000 | 148.00 | 0.097 | 31.0 | 0.296296 | 425.50 | 14.80 | 36.081081 |
| 111 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4938 | 1 | 12.50 | 32 | instock | 6.46 | -0.717234 | 162.50 | 0.106 | 45.0 | 0.337662 | 400.00 | 10.00 | 35.400000 |
| 112 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4740 | 1 | 9.70 | 31 | instock | 5.21 | -0.818610 | 87.30 | 0.057 | 40.0 | 0.253521 | 300.70 | 7.76 | 32.860825 |
| 113 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4100 | 1 | 15.80 | 0 | outofstock | 8.57 | -0.597755 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 12.64 | 32.199367 |
| 114 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4078 | 1 | 44.00 | 8 | instock | 22.28 | 0.423244 | 220.00 | 0.143 | 13.0 | 0.476190 | 352.00 | 35.20 | 36.704545 |
| 115 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4164 | 1 | 7.60 | 28 | instock | 4.04 | -0.894642 | 76.00 | 0.050 | 38.0 | 0.303030 | 212.80 | 6.08 | 33.552632 |
| 116 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4271 | 1 | 16.60 | 23 | instock | 8.32 | -0.568791 | 166.00 | 0.108 | 33.0 | 0.357143 | 381.80 | 13.28 | 37.349398 |
| 117 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4654 | 1 | 33.40 | 14 | instock | 17.43 | 0.039464 | 300.60 | 0.196 | 23.0 | 0.486486 | 467.60 | 26.72 | 34.767964 |
| 118 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4653 | 1 | 36.20 | 8 | instock | 19.64 | 0.140840 | 289.60 | 0.189 | 16.0 | 0.666667 | 289.60 | 28.96 | 32.182320 |
| 119 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4655 | 1 | 40.20 | 7 | instock | 20.35 | 0.285663 | 281.40 | 0.183 | 14.0 | 0.666667 | 281.40 | 32.16 | 36.722637 |
| 120 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4658 | 1 | 48.80 | 4 | instock | 25.97 | 0.597031 | 146.40 | 0.095 | 7.0 | 0.545455 | 195.20 | 39.04 | 33.478484 |
| 121 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5552 | 1 | 57.70 | 5 | instock | 30.11 | 0.919261 | 173.10 | 0.113 | 8.0 | 0.461538 | 288.50 | 46.16 | 34.770364 |
| 122 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5056 | 1 | 7.50 | 27 | instock | 3.95 | -0.898262 | 75.00 | 0.049 | 37.0 | 0.312500 | 202.50 | 6.00 | 34.166667 |
| 123 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5707 | 1 | 10.80 | 0 | outofstock | 5.69 | -0.778783 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 8.64 | 34.143519 |
| 124 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5806 | 1 | 17.40 | 39 | instock | 8.99 | -0.539826 | 226.20 | 0.148 | 52.0 | 0.285714 | 678.60 | 13.92 | 35.416667 |
| 125 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5803 | 1 | 17.10 | 47 | instock | 9.19 | -0.550688 | 290.70 | 0.190 | 64.0 | 0.306306 | 803.70 | 13.68 | 32.821637 |
| 126 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4336 | 1 | 35.50 | 73 | instock | 21.12 | 0.115496 | 213.00 | 0.139 | 79.0 | 0.078947 | 2591.50 | 28.40 | 25.633803 |
| 127 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4573 | 1 | 67.20 | 12 | instock | 36.46 | 1.263215 | 537.60 | 0.351 | 20.0 | 0.500000 | 806.40 | 53.76 | 32.180060 |
| 128 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4750 | 1 | 16.40 | 24 | instock | 8.30 | -0.576032 | 180.40 | 0.118 | 35.0 | 0.372881 | 393.60 | 13.12 | 36.737805 |
| 129 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4666 | 1 | 21.00 | 24 | instock | 11.18 | -0.409486 | 231.00 | 0.151 | 35.0 | 0.372881 | 504.00 | 16.80 | 33.452381 |
| 130 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4690 | 1 | 12.80 | 23 | instock | 6.94 | -0.706372 | 140.80 | 0.092 | 34.0 | 0.385965 | 294.40 | 10.24 | 32.226562 |
| 131 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5964 | 1 | 16.30 | 31 | instock | 8.51 | -0.579652 | 211.90 | 0.138 | 44.0 | 0.346667 | 505.30 | 13.04 | 34.739264 |
| 132 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4689 | 1 | 12.80 | 38 | instock | 6.68 | -0.706372 | 166.40 | 0.109 | 51.0 | 0.292135 | 486.40 | 10.24 | 34.765625 |
| 133 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4783 | 1 | 29.50 | 16 | instock | 15.85 | -0.101738 | 236.00 | 0.154 | 24.0 | 0.400000 | 472.00 | 23.60 | 32.838983 |
| 134 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4675 | 1 | 10.70 | 31 | instock | 5.64 | -0.782404 | 96.30 | 0.063 | 40.0 | 0.253521 | 331.70 | 8.56 | 34.112150 |
| 135 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4393 | 1 | 57.00 | 5 | instock | 26.13 | 0.893917 | 171.00 | 0.112 | 8.0 | 0.461538 | 285.00 | 45.60 | 42.697368 |
| 136 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4394 | 1 | 59.80 | 3 | instock | 27.96 | 0.995293 | 119.60 | 0.078 | 5.0 | 0.500000 | 179.40 | 47.84 | 41.555184 |
| 137 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4910 | 1 | 17.30 | 23 | instock | 8.76 | -0.543447 | 138.40 | 0.090 | 31.0 | 0.296296 | 397.90 | 13.84 | 36.705202 |
| 138 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4913 | 1 | 28.00 | 23 | instock | 14.76 | -0.156046 | 224.00 | 0.146 | 31.0 | 0.296296 | 644.00 | 22.40 | 34.107143 |
| 139 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5761 | 1 | 19.50 | 125 | instock | 12.07 | -0.463794 | 195.00 | 0.127 | 135.0 | 0.076923 | 2437.50 | 15.60 | 22.628205 |
| 140 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4359 | 1 | 85.60 | 112 | instock | 51.93 | 1.929399 | 599.20 | 0.391 | 119.0 | 0.060606 | 9587.20 | 68.48 | 24.167640 |
| 141 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4358 | 1 | 77.00 | 81 | instock | 47.16 | 1.618030 | 616.00 | 0.402 | 89.0 | 0.094118 | 6237.00 | 61.60 | 23.441558 |
| 142 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5796 | 1 | 12.50 | 21 | instock | 6.20 | -0.717234 | 100.00 | 0.065 | 29.0 | 0.320000 | 262.50 | 10.00 | 38.000000 |
| 143 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5389 | 1 | 16.10 | 23 | instock | 8.32 | -0.586894 | 144.90 | 0.094 | 32.0 | 0.327273 | 370.30 | 12.88 | 35.403727 |
| 144 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4235 | 1 | 17.10 | 41 | instock | 9.01 | -0.550688 | 222.30 | 0.145 | 54.0 | 0.273684 | 701.10 | 13.68 | 34.137427 |
| 145 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5893 | 1 | 26.60 | 13 | instock | 14.29 | -0.206734 | 133.00 | 0.087 | 18.0 | 0.322581 | 345.80 | 21.28 | 32.847744 |
| 146 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5026 | 1 | 86.80 | 101 | instock | 50.13 | 1.972846 | 781.20 | 0.509 | 110.0 | 0.085308 | 8766.80 | 69.44 | 27.808180 |
| 147 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5025 | 1 | 112.00 | 136 | instock | 68.60 | 2.885228 | 672.00 | 0.438 | 142.0 | 0.043165 | 15232.00 | 89.60 | 23.437500 |
| 148 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5551 | 1 | 36.30 | 6 | instock | 17.82 | 0.144461 | 108.90 | 0.071 | 9.0 | 0.400000 | 217.80 | 29.04 | 38.636364 |
| 149 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5550 | 1 | 34.30 | 8 | instock | 17.90 | 0.072049 | 137.20 | 0.089 | 12.0 | 0.400000 | 274.40 | 27.44 | 34.766764 |
| 150 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5547 | 1 | 24.60 | 16 | instock | 12.71 | -0.279146 | 123.00 | 0.080 | 21.0 | 0.270270 | 393.60 | 19.68 | 35.416667 |
| 151 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5548 | 1 | 48.80 | 5 | instock | 26.47 | 0.597031 | 146.40 | 0.095 | 8.0 | 0.461538 | 244.00 | 39.04 | 32.197746 |
| 152 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5554 | 1 | 38.00 | 13 | instock | 19.83 | 0.206010 | 266.00 | 0.173 | 20.0 | 0.424242 | 494.00 | 30.40 | 34.769737 |
| 153 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5580 | 1 | 83.70 | 4 | instock | 41.08 | 1.860608 | 167.40 | 0.109 | 6.0 | 0.400000 | 334.80 | 66.96 | 38.649940 |
| 154 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6212 | 1 | 115.00 | 16 | instock | 59.42 | 2.993845 | 805.00 | 0.525 | 23.0 | 0.358974 | 1840.00 | 92.00 | 35.413043 |
| 155 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4597 | 1 | 61.60 | 7 | instock | 33.42 | 1.060463 | 246.40 | 0.161 | 11.0 | 0.444444 | 431.20 | 49.28 | 32.183442 |
| 156 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6101 | 1 | 36.90 | 4 | instock | 20.02 | 0.166184 | 110.70 | 0.072 | 7.0 | 0.545455 | 147.60 | 29.52 | 32.181572 |
| 157 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6105 | 1 | 34.80 | 5 | instock | 17.80 | 0.090152 | 139.20 | 0.091 | 9.0 | 0.571429 | 174.00 | 27.84 | 36.063218 |
| 158 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6104 | 1 | 33.20 | 7 | instock | 17.84 | 0.032223 | 132.80 | 0.087 | 11.0 | 0.444444 | 232.40 | 26.56 | 32.831325 |
| 159 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5902 | 1 | 35.10 | 10 | instock | 18.14 | 0.101014 | 315.90 | 0.206 | 19.0 | 0.620690 | 351.00 | 28.08 | 35.398860 |
| 160 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5903 | 1 | 27.30 | 15 | instock | 13.82 | -0.181390 | 136.50 | 0.089 | 20.0 | 0.285714 | 409.50 | 21.84 | 36.721612 |
| 161 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6103 | 1 | 40.70 | 7 | instock | 21.87 | 0.303765 | 244.20 | 0.159 | 13.0 | 0.600000 | 284.90 | 32.56 | 32.831695 |
| 162 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6107 | 1 | 62.40 | 7 | instock | 31.27 | 1.089428 | 312.00 | 0.203 | 12.0 | 0.526316 | 436.80 | 49.92 | 37.359776 |
| 163 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6106 | 1 | 74.80 | 3 | instock | 40.19 | 1.538378 | 149.60 | 0.098 | 5.0 | 0.500000 | 224.40 | 59.84 | 32.837567 |
| 164 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5391 | 1 | 24.20 | 34 | instock | 13.00 | -0.293628 | 290.40 | 0.189 | 46.0 | 0.300000 | 822.80 | 19.36 | 32.851240 |
| 165 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5384 | 1 | 28.80 | 0 | outofstock | 15.18 | -0.127082 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 23.04 | 34.114583 |
| 166 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4752 | 1 | 27.90 | 23 | instock | 13.69 | -0.159667 | 195.30 | 0.127 | 30.0 | 0.264151 | 641.70 | 22.32 | 38.664875 |
| 167 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5506 | 1 | 18.20 | 24 | instock | 9.59 | -0.510862 | 200.20 | 0.131 | 35.0 | 0.372881 | 436.80 | 14.56 | 34.134615 |
| 168 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4904 | 1 | 137.00 | 9 | instock | 67.95 | 3.790369 | 411.00 | 0.268 | 12.0 | 0.285714 | 1233.00 | 109.60 | 38.001825 |
| 169 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5712 | 1 | 57.60 | 0 | outofstock | 30.36 | 0.915641 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 46.08 | 34.114583 |
| 170 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4256 | 1 | 24.40 | 0 | outofstock | 12.61 | -0.286387 | 219.60 | 0.143 | 9.0 | 2.000000 | 0.00 | 19.52 | 35.399590 |
| 171 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5914 | 1 | 36.00 | 4 | instock | 17.16 | 0.133599 | 144.00 | 0.094 | 8.0 | 0.666667 | 144.00 | 28.80 | 40.416667 |
| 172 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4779 | 1 | 7.80 | 36 | instock | 4.07 | -0.887400 | 85.80 | 0.056 | 47.0 | 0.265060 | 280.80 | 6.24 | 34.775641 |
| 173 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4776 | 1 | 6.80 | 42 | instock | 3.48 | -0.923606 | 81.60 | 0.053 | 54.0 | 0.250000 | 285.60 | 5.44 | 36.029412 |
| 174 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5743 | 1 | 57.00 | 7 | instock | 29.74 | 0.893917 | 228.00 | 0.149 | 11.0 | 0.444444 | 399.00 | 45.60 | 34.780702 |
| 175 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4171 | 1 | 7.80 | 32 | instock | 4.15 | -0.887400 | 85.80 | 0.056 | 43.0 | 0.293333 | 249.60 | 6.24 | 33.493590 |
| 176 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5777 | 1 | 5.70 | 51 | instock | 3.03 | -0.963432 | 91.20 | 0.059 | 67.0 | 0.271186 | 290.70 | 4.56 | 33.552632 |
| 177 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4739 | 1 | 7.40 | 30 | instock | 3.75 | -0.901883 | 66.60 | 0.043 | 39.0 | 0.260870 | 222.00 | 5.92 | 36.655405 |
| 178 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4616 | 1 | 57.00 | 10 | instock | 27.98 | 0.893917 | 342.00 | 0.223 | 16.0 | 0.461538 | 570.00 | 45.60 | 38.640351 |
| 179 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4618 | 1 | 30.60 | 0 | outofstock | 16.44 | -0.061912 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 24.48 | 32.843137 |
| 180 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4907 | 1 | 22.90 | 32 | instock | 12.42 | -0.340695 | 229.00 | 0.149 | 42.0 | 0.270270 | 732.80 | 18.32 | 32.205240 |
| 181 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4908 | 1 | 53.20 | 7 | instock | 26.11 | 0.756336 | 266.00 | 0.173 | 12.0 | 0.526316 | 372.40 | 42.56 | 38.651316 |
| 182 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5810 | 1 | 24.00 | 27 | instock | 12.77 | -0.300869 | 264.00 | 0.172 | 38.0 | 0.338462 | 648.00 | 19.20 | 33.489583 |
| 183 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4684 | 1 | 18.10 | 28 | instock | 9.45 | -0.514482 | 181.00 | 0.118 | 38.0 | 0.303030 | 506.80 | 14.48 | 34.737569 |
| 184 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5799 | 1 | 40.20 | 3 | instock | 19.94 | 0.285663 | 120.60 | 0.079 | 6.0 | 0.666667 | 120.60 | 32.16 | 37.997512 |
| 185 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5448 | 1 | 7.20 | 42 | instock | 3.76 | -0.909124 | 108.00 | 0.070 | 57.0 | 0.303030 | 302.40 | 5.76 | 34.722222 |
| 186 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4162 | 1 | 14.30 | 31 | instock | 7.02 | -0.652064 | 171.60 | 0.112 | 43.0 | 0.324324 | 443.30 | 11.44 | 38.636364 |
| 187 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4258 | 1 | 32.10 | 12 | instock | 17.25 | -0.007603 | 256.80 | 0.167 | 20.0 | 0.500000 | 385.20 | 25.68 | 32.827103 |
| 188 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4797 | 1 | 78.00 | 5 | instock | 42.32 | 1.654236 | 390.00 | 0.254 | 10.0 | 0.666667 | 390.00 | 62.40 | 32.179487 |
| 189 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4994 | 1 | 78.00 | 11 | instock | 40.70 | 1.654236 | 468.00 | 0.305 | 17.0 | 0.428571 | 858.00 | 62.40 | 34.775641 |
| 190 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4996 | 1 | 78.00 | 6 | instock | 40.70 | 1.654236 | 312.00 | 0.203 | 10.0 | 0.500000 | 468.00 | 62.40 | 34.775641 |
| 191 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4995 | 1 | 78.00 | 6 | instock | 42.32 | 1.654236 | 312.00 | 0.203 | 10.0 | 0.500000 | 468.00 | 62.40 | 32.179487 |
| 192 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4276 | 1 | 17.60 | 17 | instock | 9.46 | -0.532585 | 123.20 | 0.080 | 24.0 | 0.341463 | 299.20 | 14.08 | 32.812500 |
| 193 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5379 | 1 | 11.10 | 33 | instock | 5.68 | -0.767922 | 1232.10 | 0.803 | 144.0 | 1.254237 | 366.30 | 8.88 | 36.036036 |
| 194 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6128 | 1 | 10.60 | 45 | instock | 5.64 | -0.786025 | 137.80 | 0.090 | 58.0 | 0.252427 | 477.00 | 8.48 | 33.490566 |
| 195 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6129 | 1 | 5.20 | 68 | instock | 2.74 | -0.981535 | 104.00 | 0.068 | 88.0 | 0.256410 | 353.60 | 4.16 | 34.134615 |
| 196 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6127 | 1 | 10.60 | 32 | instock | 5.42 | -0.786025 | 127.20 | 0.083 | 44.0 | 0.315789 | 339.20 | 8.48 | 36.084906 |
| 197 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5002 | 1 | 64.90 | 4 | instock | 34.54 | 1.179942 | 194.70 | 0.127 | 7.0 | 0.545455 | 259.60 | 51.92 | 33.474576 |
| 198 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5001 | 1 | 217.50 | 18 | instock | 116.87 | 6.704924 | 435.00 | 0.284 | 20.0 | 0.105263 | 3915.00 | 174.00 | 32.833333 |
| 199 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6201 | 1 | 105.60 | 16 | instock | 57.29 | 2.653512 | 633.60 | 0.413 | 22.0 | 0.315789 | 1689.60 | 84.48 | 32.185133 |
| 200 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4791 | 1 | 13.60 | 27 | instock | 7.38 | -0.677408 | 108.80 | 0.071 | 35.0 | 0.258065 | 367.20 | 10.88 | 32.169118 |
| 201 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5817 | 1 | 57.60 | 6 | instock | 28.87 | 0.915641 | 288.00 | 0.188 | 11.0 | 0.588235 | 345.60 | 46.08 | 37.348090 |
| 202 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6204 | 1 | 31.00 | 17 | instock | 15.86 | -0.047429 | 279.00 | 0.182 | 26.0 | 0.418605 | 527.00 | 24.80 | 36.048387 |
| 203 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5396 | 1 | 17.10 | 14 | instock | 8.48 | -0.550688 | 119.70 | 0.078 | 21.0 | 0.400000 | 239.40 | 13.68 | 38.011696 |
| 204 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4748 | 1 | 14.50 | 35 | instock | 7.42 | -0.644823 | 159.50 | 0.104 | 46.0 | 0.271605 | 507.50 | 11.60 | 36.034483 |
| 205 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5690 | 1 | 44.60 | 9 | instock | 21.89 | 0.444967 | 356.80 | 0.233 | 17.0 | 0.615385 | 401.40 | 35.68 | 38.649103 |
| 206 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4668 | 1 | 12.30 | 21 | instock | 6.23 | -0.724475 | 123.00 | 0.080 | 31.0 | 0.384615 | 258.30 | 9.84 | 36.686992 |
| 207 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5694 | 1 | 12.70 | 25 | instock | 6.23 | -0.709993 | 114.30 | 0.075 | 34.0 | 0.305085 | 317.50 | 10.16 | 38.681102 |
| 208 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4672 | 1 | 17.80 | 36 | instock | 9.56 | -0.525344 | 231.40 | 0.151 | 49.0 | 0.305882 | 640.80 | 14.24 | 32.865169 |
| 209 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5474 | 1 | 42.00 | 11 | instock | 22.57 | 0.350833 | 336.00 | 0.219 | 19.0 | 0.533333 | 462.00 | 33.60 | 32.827381 |
| 210 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4757 | 1 | 26.50 | 21 | instock | 13.01 | -0.210355 | 185.50 | 0.121 | 28.0 | 0.285714 | 556.50 | 21.20 | 38.632075 |
| 211 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5794 | 1 | 21.70 | 15 | instock | 10.65 | -0.384142 | 108.50 | 0.071 | 20.0 | 0.285714 | 325.50 | 17.36 | 38.652074 |
| 212 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5019 | 1 | 19.80 | 45 | instock | 10.43 | -0.452933 | 257.40 | 0.168 | 58.0 | 0.252427 | 891.00 | 15.84 | 34.154040 |
| 213 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4705 | 1 | 31.60 | 9 | instock | 17.14 | -0.025706 | 189.60 | 0.124 | 15.0 | 0.500000 | 284.40 | 25.28 | 32.199367 |
| 214 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4708 | 1 | 32.60 | 3 | instock | 17.35 | 0.010500 | 97.80 | 0.064 | 6.0 | 0.666667 | 97.80 | 26.08 | 33.473926 |
| 215 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5488 | 1 | 43.50 | 11 | instock | 22.70 | 0.405141 | 261.00 | 0.170 | 17.0 | 0.428571 | 478.50 | 34.80 | 34.770115 |
| 216 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4241 | 1 | 8.90 | 0 | outofstock | 4.37 | -0.847574 | 133.50 | 0.087 | 15.0 | 2.000000 | 0.00 | 7.12 | 38.623596 |
| 217 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5573 | 1 | 34.70 | 22 | instock | 17.39 | 0.086531 | 416.40 | 0.272 | 34.0 | 0.428571 | 763.40 | 27.76 | 37.355908 |
| 218 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5700 | 1 | 44.50 | 0 | outofstock | 22.30 | 0.441347 | 356.00 | 0.232 | 8.0 | 2.000000 | 0.00 | 35.60 | 37.359551 |
| 219 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4713 | 1 | 18.40 | 25 | instock | 9.22 | -0.503621 | 165.60 | 0.108 | 34.0 | 0.305085 | 460.00 | 14.72 | 37.364130 |
| 220 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4157 | 1 | 12.00 | 36 | instock | 6.45 | -0.735337 | 144.00 | 0.094 | 48.0 | 0.285714 | 432.00 | 9.60 | 32.812500 |
| 221 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4975 | 1 | 23.70 | 19 | instock | 12.73 | -0.311731 | 213.30 | 0.139 | 28.0 | 0.382979 | 450.30 | 18.96 | 32.858650 |
| 222 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4400 | 1 | 44.00 | 12 | instock | 21.18 | 0.423244 | 396.00 | 0.258 | 21.0 | 0.545455 | 528.00 | 35.20 | 39.829545 |
| 223 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5918 | 1 | 114.00 | 12 | instock | 52.25 | 2.957639 | 342.00 | 0.223 | 15.0 | 0.222222 | 1368.00 | 91.20 | 42.708333 |
| 224 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5916 | 1 | 93.00 | 1 | instock | 40.49 | 2.197321 | 93.00 | 0.061 | 2.0 | 0.666667 | 93.00 | 74.40 | 45.577957 |
| 225 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5917 | 1 | 122.00 | 12 | instock | 54.24 | 3.247285 | 366.00 | 0.239 | 15.0 | 0.222222 | 1464.00 | 97.60 | 44.426230 |
| 226 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6108 | 1 | 46.00 | 7 | instock | 24.72 | 0.495655 | 184.00 | 0.120 | 11.0 | 0.444444 | 322.00 | 36.80 | 32.826087 |
| 227 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4107 | 1 | 35.00 | 8 | instock | 17.54 | 0.097393 | 175.00 | 0.114 | 13.0 | 0.476190 | 280.00 | 28.00 | 37.357143 |
| 228 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4901 | 1 | 41.00 | 17 | instock | 20.76 | 0.314627 | 369.00 | 0.241 | 26.0 | 0.418605 | 697.00 | 32.80 | 36.707317 |
| 229 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4903 | 1 | 102.30 | 12 | instock | 51.80 | 2.534033 | 204.60 | 0.133 | 14.0 | 0.153846 | 1227.60 | 81.84 | 36.705767 |
| 230 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5443 | 1 | 23.60 | 32 | instock | 12.56 | -0.315351 | 236.00 | 0.154 | 42.0 | 0.270270 | 755.20 | 18.88 | 33.474576 |
| 231 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5525 | 1 | 12.00 | 23 | instock | 6.26 | -0.735337 | 132.00 | 0.086 | 34.0 | 0.385965 | 276.00 | 9.60 | 34.791667 |
| 232 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5545 | 1 | 65.90 | 13 | instock | 32.35 | 1.216148 | 461.30 | 0.301 | 20.0 | 0.424242 | 856.70 | 52.72 | 38.638088 |
| 233 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5544 | 1 | 61.60 | 0 | outofstock | 31.51 | 1.060463 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 49.28 | 36.059253 |
| 234 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5016 | 1 | 9.30 | 40 | instock | 4.81 | -0.833092 | 139.50 | 0.091 | 55.0 | 0.315789 | 372.00 | 7.44 | 35.349462 |
| 235 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5617 | 1 | 27.80 | 0 | outofstock | 14.65 | -0.163287 | 250.20 | 0.163 | 9.0 | 2.000000 | 0.00 | 22.24 | 34.127698 |
| 236 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5616 | 1 | 38.40 | 7 | instock | 19.05 | 0.220492 | 153.60 | 0.100 | 11.0 | 0.444444 | 268.80 | 30.72 | 37.988281 |
| 237 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5613 | 1 | 19.20 | 28 | instock | 10.22 | -0.474656 | 211.20 | 0.138 | 39.0 | 0.328358 | 537.60 | 15.36 | 33.463542 |
| 238 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5614 | 1 | 19.20 | 17 | instock | 9.42 | -0.474656 | 153.60 | 0.100 | 25.0 | 0.380952 | 326.40 | 15.36 | 38.671875 |
| 239 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4275 | 1 | 14.90 | 62 | instock | 7.78 | -0.630340 | 357.60 | 0.233 | 86.0 | 0.324324 | 923.80 | 11.92 | 34.731544 |
| 240 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4277 | 1 | 24.80 | 28 | instock | 12.69 | -0.271904 | 223.20 | 0.146 | 37.0 | 0.276923 | 694.40 | 19.84 | 36.038306 |
| 241 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6886 | 1 | 42.00 | 8 | instock | 20.62 | 0.350833 | 210.00 | 0.137 | 13.0 | 0.476190 | 336.00 | 33.60 | 38.630952 |
| 242 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6049 | 1 | 21.80 | 30 | instock | 10.81 | -0.380521 | 196.20 | 0.128 | 39.0 | 0.260870 | 654.00 | 17.44 | 38.016055 |
| 243 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4101 | 1 | 15.80 | 21 | instock | 8.33 | -0.597755 | 110.60 | 0.072 | 28.0 | 0.285714 | 331.80 | 12.64 | 34.098101 |
| 244 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5610 | 1 | 18.00 | 29 | instock | 9.02 | -0.518103 | 198.00 | 0.129 | 40.0 | 0.318841 | 522.00 | 14.40 | 37.361111 |
| 245 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5612 | 1 | 124.80 | 19 | instock | 66.41 | 3.348660 | 124.80 | 0.081 | 20.0 | 0.051282 | 2371.20 | 99.84 | 33.483574 |
| 246 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6126 | 1 | 135.00 | 138 | instock | 80.33 | 3.717958 | 675.00 | 0.440 | 143.0 | 0.035587 | 18630.00 | 108.00 | 25.620370 |
| 247 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4977 | 1 | 16.30 | 31 | instock | 8.84 | -0.579652 | 195.60 | 0.128 | 43.0 | 0.324324 | 505.30 | 13.04 | 32.208589 |
| 248 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4156 | 1 | 20.35 | 44 | instock | 10.30 | -0.433020 | 264.55 | 0.173 | 57.0 | 0.257426 | 895.40 | 16.28 | 36.732187 |
| 249 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4155 | 1 | 14.50 | 33 | instock | 7.27 | -0.644823 | 145.00 | 0.095 | 43.0 | 0.263158 | 478.50 | 11.60 | 37.327586 |
| 250 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4260 | 1 | 12.20 | 31 | instock | 6.37 | -0.728096 | 158.60 | 0.103 | 44.0 | 0.346667 | 378.20 | 9.76 | 34.733607 |
| 251 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4726 | 1 | 12.70 | 0 | outofstock | 6.82 | -0.709993 | 1549.40 | 1.010 | 122.0 | 2.000000 | 0.00 | 10.16 | 32.874016 |
| 252 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5804 | 1 | 25.00 | 25 | instock | 12.40 | -0.264663 | 225.00 | 0.147 | 34.0 | 0.305085 | 625.00 | 20.00 | 38.000000 |
| 253 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4041 | 1 | 32.70 | 12 | instock | 17.57 | 0.014120 | 196.20 | 0.128 | 18.0 | 0.400000 | 392.40 | 26.16 | 32.836391 |
| 254 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4047 | 1 | 18.30 | 0 | outofstock | 9.93 | -0.507241 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 14.64 | 32.172131 |
| 255 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4043 | 1 | 60.00 | 0 | outofstock | 29.45 | 1.002534 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 48.00 | 38.645833 |
| 256 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4885 | 1 | 18.70 | 0 | instock | 9.66 | -0.492759 | 187.00 | 0.122 | 10.0 | 2.000000 | 0.00 | 14.96 | 35.427807 |
| 257 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5715 | 1 | 13.70 | 15 | instock | 7.29 | -0.673787 | 95.90 | 0.063 | 22.0 | 0.378378 | 205.50 | 10.96 | 33.485401 |
| 258 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5892 | 1 | 191.30 | 98 | instock | 116.06 | 5.756336 | 1147.80 | 0.748 | 104.0 | 0.059406 | 18747.40 | 153.04 | 24.163617 |
| 259 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4704 | 1 | 18.20 | 30 | instock | 9.22 | -0.510862 | 163.80 | 0.107 | 39.0 | 0.260870 | 546.00 | 14.56 | 36.675824 |
| 260 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4065 | 1 | 19.50 | 0 | outofstock | 9.67 | -0.463794 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 15.60 | 38.012821 |
| 261 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5722 | 1 | 7.10 | 38 | instock | 3.48 | -0.912744 | 99.40 | 0.065 | 52.0 | 0.311111 | 269.80 | 5.68 | 38.732394 |
| 262 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4613 | 1 | 16.90 | 23 | instock | 8.38 | -0.557929 | 185.90 | 0.121 | 34.0 | 0.385965 | 388.70 | 13.52 | 38.017751 |
| 263 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4251 | 1 | 14.10 | 31 | instock | 7.65 | -0.659305 | 155.10 | 0.101 | 42.0 | 0.301370 | 437.10 | 11.28 | 32.180851 |
| 264 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4248 | 1 | 14.80 | 38 | instock | 7.49 | -0.633961 | 177.60 | 0.116 | 50.0 | 0.272727 | 562.40 | 11.84 | 36.739865 |
| 265 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5709 | 1 | 31.70 | 0 | outofstock | 16.54 | -0.022085 | 158.50 | 0.103 | 5.0 | 2.000000 | 0.00 | 25.36 | 34.779180 |
| 266 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5704 | 1 | 16.90 | 35 | instock | 8.30 | -0.557929 | 185.90 | 0.121 | 46.0 | 0.271605 | 591.50 | 13.52 | 38.609467 |
| 267 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4612 | 1 | 20.60 | 0 | outofstock | 10.22 | -0.423968 | 103.00 | 0.067 | 5.0 | 2.000000 | 0.00 | 16.48 | 37.985437 |
| 268 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4928 | 1 | 7.90 | 28 | instock | 3.88 | -0.883780 | 94.80 | 0.062 | 40.0 | 0.352941 | 221.20 | 6.32 | 38.607595 |
| 269 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6216 | 1 | 121.00 | 14 | instock | 60.02 | 3.211079 | 242.00 | 0.158 | 16.0 | 0.133333 | 1694.00 | 96.80 | 37.995868 |
| 270 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6213 | 1 | 121.00 | 9 | instock | 63.14 | 3.211079 | 363.00 | 0.237 | 12.0 | 0.285714 | 1089.00 | 96.80 | 34.772727 |
| 271 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5010 | 1 | 55.60 | 6 | instock | 30.16 | 0.843230 | 222.40 | 0.145 | 10.0 | 0.500000 | 333.60 | 44.48 | 32.194245 |
| 272 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4165 | 1 | 12.00 | 26 | instock | 5.95 | -0.735337 | 120.00 | 0.078 | 36.0 | 0.322581 | 312.00 | 9.60 | 38.020833 |
| 273 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5809 | 1 | 17.90 | 32 | instock | 9.71 | -0.521723 | 196.90 | 0.128 | 43.0 | 0.293333 | 572.80 | 14.32 | 32.192737 |
| 274 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5395 | 1 | 12.70 | 24 | instock | 6.82 | -0.709993 | 127.00 | 0.083 | 34.0 | 0.344828 | 304.80 | 10.16 | 32.874016 |
| 275 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4936 | 1 | 11.10 | 25 | instock | 5.68 | -0.767922 | 111.00 | 0.072 | 35.0 | 0.333333 | 277.50 | 8.88 | 36.036036 |
| 276 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5736 | 1 | 14.90 | 32 | instock | 7.31 | -0.630340 | 149.00 | 0.097 | 42.0 | 0.270270 | 476.80 | 11.92 | 38.674497 |
| 277 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4304 | 1 | 8.10 | 45 | instock | 4.19 | -0.876539 | 113.40 | 0.074 | 59.0 | 0.269231 | 364.50 | 6.48 | 35.339506 |
| 278 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5742 | 1 | 42.10 | 3 | instock | 22.84 | 0.354453 | 84.20 | 0.055 | 5.0 | 0.500000 | 126.30 | 33.68 | 32.185273 |
| 279 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6202 | 1 | 116.40 | 12 | instock | 63.15 | 3.044533 | 582.00 | 0.380 | 17.0 | 0.344828 | 1396.80 | 93.12 | 32.184278 |
| 280 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5741 | 1 | 73.30 | 4 | instock | 37.87 | 1.484070 | 146.60 | 0.096 | 6.0 | 0.400000 | 293.20 | 58.64 | 35.419509 |
| 281 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6050 | 1 | 38.50 | 0 | outofstock | 20.09 | 0.224113 | 231.00 | 0.151 | 6.0 | 2.000000 | 0.00 | 30.80 | 34.772727 |
| 282 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4265 | 1 | 9.60 | 27 | instock | 4.81 | -0.822230 | 115.20 | 0.075 | 39.0 | 0.363636 | 259.20 | 7.68 | 37.369792 |
| 283 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5481 | 1 | 11.50 | 25 | instock | 5.64 | -0.753440 | 103.50 | 0.067 | 34.0 | 0.305085 | 287.50 | 9.20 | 38.695652 |
| 284 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4151 | 1 | 13.70 | 23 | instock | 7.36 | -0.673787 | 95.90 | 0.063 | 30.0 | 0.264151 | 315.10 | 10.96 | 32.846715 |
| 285 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4154 | 1 | 9.80 | 31 | instock | 4.91 | -0.814989 | 127.40 | 0.083 | 44.0 | 0.346667 | 303.80 | 7.84 | 37.372449 |
| 286 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4609 | 1 | 11.80 | 40 | instock | 6.04 | -0.742578 | 165.20 | 0.108 | 54.0 | 0.297872 | 472.00 | 9.44 | 36.016949 |
| 287 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4607 | 1 | 13.40 | 41 | instock | 7.13 | -0.684649 | 160.80 | 0.105 | 53.0 | 0.255319 | 549.40 | 10.72 | 33.488806 |
| 288 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4603 | 1 | 31.50 | 8 | instock | 15.95 | -0.029327 | 189.00 | 0.123 | 14.0 | 0.545455 | 252.00 | 25.20 | 36.706349 |
| 289 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4605 | 1 | 32.20 | 9 | instock | 16.47 | -0.003983 | 289.80 | 0.189 | 18.0 | 0.666667 | 289.80 | 25.76 | 36.063665 |
| 290 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4606 | 1 | 50.10 | 0 | outofstock | 24.59 | 0.644098 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 40.08 | 38.647705 |
| 291 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5444 | 1 | 15.50 | 40 | instock | 7.69 | -0.608617 | 201.50 | 0.131 | 53.0 | 0.279570 | 620.00 | 12.40 | 37.983871 |
| 292 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6226 | 1 | 20.40 | 26 | instock | 10.96 | -0.431209 | 204.00 | 0.133 | 36.0 | 0.322581 | 530.40 | 16.32 | 32.843137 |
| 293 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6225 | 1 | 20.40 | 26 | instock | 10.22 | -0.431209 | 163.20 | 0.106 | 34.0 | 0.266667 | 530.40 | 16.32 | 37.377451 |
| 294 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6227 | 1 | 40.20 | 11 | instock | 21.39 | 0.285663 | 321.60 | 0.210 | 19.0 | 0.533333 | 442.20 | 32.16 | 33.488806 |
| 295 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5770 | 1 | 34.40 | 19 | instock | 18.13 | 0.075670 | 344.00 | 0.224 | 29.0 | 0.416667 | 653.60 | 27.52 | 34.120640 |
| 296 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5766 | 1 | 35.60 | 4 | instock | 17.66 | 0.119117 | 106.80 | 0.070 | 7.0 | 0.545455 | 142.40 | 28.48 | 37.991573 |
| 297 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5772 | 1 | 29.70 | 12 | instock | 15.04 | -0.094497 | 118.80 | 0.077 | 16.0 | 0.285714 | 356.40 | 23.76 | 36.700337 |
| 298 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5768 | 1 | 35.60 | 7 | instock | 18.21 | 0.119117 | 178.00 | 0.116 | 12.0 | 0.526316 | 249.20 | 28.48 | 36.060393 |
| 299 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5771 | 1 | 38.40 | 6 | instock | 20.04 | 0.220492 | 115.20 | 0.075 | 9.0 | 0.400000 | 230.40 | 30.72 | 34.765625 |
| 300 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5767 | 1 | 175.00 | 12 | instock | 90.42 | 5.166184 | 700.00 | 0.456 | 16.0 | 0.285714 | 2100.00 | 140.00 | 35.414286 |
| 301 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4715 | 1 | 11.10 | 23 | instock | 5.91 | -0.767922 | 122.10 | 0.080 | 34.0 | 0.385965 | 255.30 | 8.88 | 33.445946 |
| 302 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6109 | 1 | 39.20 | 17 | instock | 21.06 | 0.249457 | 352.80 | 0.230 | 26.0 | 0.418605 | 666.40 | 31.36 | 32.844388 |
| 303 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5546 | 1 | 15.20 | 18 | instock | 7.93 | -0.619479 | 106.40 | 0.069 | 25.0 | 0.325581 | 273.60 | 12.16 | 34.786184 |
| 304 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6621 | 1 | 35.20 | 7 | instock | 17.46 | 0.104634 | 140.80 | 0.092 | 11.0 | 0.444444 | 246.40 | 28.16 | 37.997159 |
| 305 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6622 | 1 | 42.20 | 16 | instock | 22.02 | 0.358074 | 337.60 | 0.220 | 24.0 | 0.400000 | 675.20 | 33.76 | 34.774882 |
| 306 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4650 | 1 | 25.30 | 20 | instock | 13.07 | -0.253802 | 227.70 | 0.148 | 29.0 | 0.367347 | 506.00 | 20.24 | 35.424901 |
| 307 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4216 | 1 | 13.40 | 35 | instock | 7.20 | -0.684649 | 174.20 | 0.114 | 48.0 | 0.313253 | 469.00 | 10.72 | 32.835821 |
| 308 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5912 | 1 | 57.00 | 4 | instock | 25.08 | 0.893917 | 114.00 | 0.074 | 6.0 | 0.400000 | 228.00 | 45.60 | 45.000000 |
| 309 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4980 | 1 | 26.50 | 18 | instock | 14.10 | -0.210355 | 212.00 | 0.138 | 26.0 | 0.363636 | 477.00 | 21.20 | 33.490566 |
| 310 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5816 | 1 | 16.90 | 32 | instock | 8.73 | -0.557929 | 185.90 | 0.121 | 43.0 | 0.293333 | 540.80 | 13.52 | 35.428994 |
| 311 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5815 | 1 | 16.60 | 26 | instock | 9.01 | -0.568791 | 149.40 | 0.097 | 35.0 | 0.295082 | 431.60 | 13.28 | 32.153614 |
| 312 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5820 | 1 | 63.50 | 7 | instock | 32.48 | 1.129254 | 381.00 | 0.248 | 13.0 | 0.600000 | 444.50 | 50.80 | 36.062992 |
| 313 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5818 | 1 | 63.50 | 2 | instock | 32.48 | 1.129254 | 63.50 | 0.041 | 3.0 | 0.400000 | 127.00 | 50.80 | 36.062992 |
| 314 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5769 | 1 | 33.60 | 6 | instock | 16.49 | 0.046705 | 168.00 | 0.110 | 11.0 | 0.588235 | 201.60 | 26.88 | 38.653274 |
| 315 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6753 | 1 | 46.50 | 6 | instock | 22.82 | 0.513758 | 186.00 | 0.121 | 10.0 | 0.500000 | 279.00 | 37.20 | 38.655914 |
| 316 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4227 | 1 | 12.60 | 24 | instock | 6.77 | -0.713613 | 100.80 | 0.066 | 32.0 | 0.285714 | 302.40 | 10.08 | 32.837302 |
| 317 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5773 | 1 | 32.80 | 9 | instock | 17.79 | 0.017741 | 229.60 | 0.150 | 16.0 | 0.560000 | 295.20 | 26.24 | 32.202744 |
| 318 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4046 | 1 | 80.00 | 2 | instock | 40.92 | 1.726647 | 160.00 | 0.104 | 4.0 | 0.666667 | 160.00 | 64.00 | 36.062500 |
| 319 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4676 | 1 | 12.90 | 28 | instock | 6.93 | -0.702752 | 141.90 | 0.093 | 39.0 | 0.328358 | 361.20 | 10.32 | 32.848837 |
| 320 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4678 | 1 | 29.80 | 31 | instock | 15.09 | -0.090876 | 268.20 | 0.175 | 40.0 | 0.253521 | 923.80 | 23.84 | 36.703020 |
| 321 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4677 | 1 | 9.50 | 25 | instock | 4.91 | -0.825851 | 85.50 | 0.056 | 34.0 | 0.305085 | 237.50 | 7.60 | 35.394737 |
| 322 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4679 | 1 | 13.20 | 32 | instock | 6.55 | -0.691890 | 158.40 | 0.103 | 44.0 | 0.315789 | 422.40 | 10.56 | 37.973485 |
| 323 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4288 | 1 | 26.70 | 26 | instock | 14.48 | -0.203114 | 213.60 | 0.139 | 34.0 | 0.266667 | 694.20 | 21.36 | 32.209738 |
| 324 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3849 | 1 | 34.30 | 10 | instock | 17.54 | 0.072049 | 308.70 | 0.201 | 19.0 | 0.620690 | 343.00 | 27.44 | 36.078717 |
| 325 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3847 | 1 | 24.20 | 16 | instock | 12.88 | -0.293628 | 145.20 | 0.095 | 22.0 | 0.315789 | 387.20 | 19.36 | 33.471074 |
| 326 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3850 | 1 | 20.80 | 0 | outofstock | 10.64 | -0.416727 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 16.64 | 36.057692 |
| 327 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4040 | 1 | 34.30 | 12 | instock | 18.25 | 0.072049 | 240.10 | 0.157 | 19.0 | 0.451613 | 411.60 | 27.44 | 33.491254 |
| 328 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4224 | 1 | 17.20 | 21 | instock | 8.53 | -0.547067 | 154.80 | 0.101 | 30.0 | 0.352941 | 361.20 | 13.76 | 38.008721 |
| 329 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4861 | 1 | 8.50 | 36 | instock | 4.17 | -0.862056 | 127.50 | 0.083 | 51.0 | 0.344828 | 306.00 | 6.80 | 38.676471 |
| 330 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4242 | 1 | 8.60 | 30 | instock | 4.22 | -0.858436 | 120.40 | 0.079 | 44.0 | 0.378378 | 258.00 | 6.88 | 38.662791 |
| 331 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4749 | 1 | 11.90 | 38 | instock | 6.46 | -0.738957 | 142.80 | 0.093 | 50.0 | 0.272727 | 452.20 | 9.52 | 32.142857 |
| 332 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4789 | 1 | 11.10 | 27 | instock | 5.96 | -0.767922 | 88.80 | 0.058 | 35.0 | 0.258065 | 299.70 | 8.88 | 32.882883 |
| 333 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6038 | 1 | 48.50 | 0 | outofstock | 25.31 | 0.586169 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 38.80 | 34.768041 |
| 334 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6223 | 1 | 26.70 | 17 | instock | 13.80 | -0.203114 | 160.20 | 0.104 | 23.0 | 0.300000 | 453.90 | 21.36 | 35.393258 |
| 335 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5826 | 1 | 41.20 | 34 | instock | 21.71 | 0.321868 | 824.00 | 0.537 | 54.0 | 0.454545 | 1400.80 | 32.96 | 34.132282 |
| 336 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5827 | 1 | 55.00 | 4 | instock | 29.55 | 0.821506 | 110.00 | 0.072 | 6.0 | 0.400000 | 220.00 | 44.00 | 32.840909 |
| 337 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5829 | 1 | 57.00 | 5 | instock | 29.74 | 0.893917 | 171.00 | 0.112 | 8.0 | 0.461538 | 285.00 | 45.60 | 34.780702 |
| 338 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4940 | 1 | 20.50 | 39 | instock | 11.02 | -0.427589 | 246.00 | 0.160 | 51.0 | 0.266667 | 799.50 | 16.40 | 32.804878 |
| 339 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4939 | 1 | 12.90 | 23 | instock | 6.53 | -0.702752 | 90.30 | 0.059 | 30.0 | 0.264151 | 296.70 | 10.32 | 36.724806 |
| 340 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4130 | 1 | 23.00 | 16 | instock | 12.48 | -0.337075 | 161.00 | 0.105 | 23.0 | 0.358974 | 368.00 | 18.40 | 32.173913 |
| 341 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4138 | 1 | 25.70 | 0 | outofstock | 13.01 | -0.239319 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 20.56 | 36.721790 |
| 342 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6035 | 1 | 17.90 | 13 | instock | 9.34 | -0.521723 | 107.40 | 0.070 | 19.0 | 0.375000 | 232.70 | 14.32 | 34.776536 |
| 343 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5922 | 1 | 48.50 | 4 | instock | 24.31 | 0.586169 | 194.00 | 0.127 | 8.0 | 0.666667 | 194.00 | 38.80 | 37.345361 |
| 344 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5069 | 1 | 65.00 | 14 | instock | 35.26 | 1.183563 | 455.00 | 0.297 | 21.0 | 0.400000 | 910.00 | 52.00 | 32.192308 |
| 345 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5068 | 1 | 59.90 | 6 | instock | 32.50 | 0.998914 | 179.70 | 0.117 | 9.0 | 0.400000 | 359.40 | 47.92 | 32.178631 |
| 346 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5067 | 1 | 59.90 | 3 | instock | 30.95 | 0.998914 | 1317.80 | 0.859 | 25.0 | 1.571429 | 179.70 | 47.92 | 35.413189 |
| 347 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4706 | 1 | 16.80 | 0 | outofstock | 8.68 | -0.561550 | 168.00 | 0.110 | 10.0 | 2.000000 | 0.00 | 13.44 | 35.416667 |
| 348 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5925 | 1 | 49.50 | 15 | instock | 25.06 | 0.622375 | 396.00 | 0.258 | 23.0 | 0.421053 | 742.50 | 39.60 | 36.717172 |
| 349 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4108 | 1 | 31.70 | 13 | instock | 16.54 | -0.022085 | 221.90 | 0.145 | 20.0 | 0.424242 | 412.10 | 25.36 | 34.779180 |
| 350 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5705 | 1 | 19.80 | 23 | instock | 9.82 | -0.452933 | 138.60 | 0.090 | 30.0 | 0.264151 | 455.40 | 15.84 | 38.005051 |
| 351 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4714 | 1 | 13.30 | 26 | instock | 7.22 | -0.688269 | 172.90 | 0.113 | 39.0 | 0.400000 | 345.80 | 10.64 | 32.142857 |
| 352 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5737 | 1 | 11.00 | 25 | instock | 5.57 | -0.771542 | 88.00 | 0.057 | 33.0 | 0.275862 | 275.00 | 8.80 | 36.704545 |
| 353 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4160 | 1 | 9.30 | 36 | instock | 4.85 | -0.833092 | 102.30 | 0.067 | 47.0 | 0.265060 | 334.80 | 7.44 | 34.811828 |
| 354 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4161 | 1 | 11.60 | 36 | instock | 5.81 | -0.749819 | 139.20 | 0.091 | 48.0 | 0.285714 | 417.60 | 9.28 | 37.392241 |
| 355 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4098 | 1 | 22.10 | 17 | instock | 10.96 | -0.369660 | 176.80 | 0.115 | 25.0 | 0.380952 | 375.70 | 17.68 | 38.009050 |
| 356 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4115 | 1 | 100.00 | 12 | instock | 52.70 | 2.450760 | 100.00 | 0.065 | 13.0 | 0.080000 | 1200.00 | 80.00 | 34.125000 |
| 357 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5802 | 1 | 23.80 | 34 | instock | 12.54 | -0.308110 | 261.80 | 0.171 | 45.0 | 0.278481 | 809.20 | 19.04 | 34.138655 |
| 358 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4664 | 1 | 16.40 | 20 | instock | 8.39 | -0.576032 | 147.60 | 0.096 | 29.0 | 0.367347 | 328.00 | 13.12 | 36.051829 |
| 359 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4229 | 1 | 9.60 | 28 | instock | 4.96 | -0.822230 | 105.60 | 0.069 | 39.0 | 0.328358 | 268.80 | 7.68 | 35.416667 |
| 360 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4665 | 1 | 14.40 | 39 | instock | 7.59 | -0.648443 | 187.20 | 0.122 | 52.0 | 0.285714 | 561.60 | 11.52 | 34.114583 |
| 361 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4205 | 1 | 23.00 | 12 | instock | 11.65 | -0.337075 | 138.00 | 0.090 | 18.0 | 0.400000 | 276.00 | 18.40 | 36.684783 |
| 362 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4204 | 1 | 11.30 | 50 | instock | 5.96 | -0.760681 | 169.50 | 0.111 | 65.0 | 0.260870 | 565.00 | 9.04 | 34.070796 |
| 363 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4203 | 1 | 9.90 | 74 | instock | 5.01 | -0.811369 | 267.30 | 0.174 | 101.0 | 0.308571 | 732.60 | 7.92 | 36.742424 |
| 364 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4927 | 1 | 6.50 | 39 | instock | 3.29 | -0.934468 | 84.50 | 0.055 | 52.0 | 0.285714 | 253.50 | 5.20 | 36.730769 |
| 365 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4558 | 1 | 28.10 | 23 | instock | 15.24 | -0.152426 | 252.90 | 0.165 | 32.0 | 0.327273 | 646.30 | 22.48 | 32.206406 |
| 366 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4246 | 1 | 15.30 | 29 | instock | 8.14 | -0.615858 | 137.70 | 0.090 | 38.0 | 0.268657 | 443.70 | 12.24 | 33.496732 |
| 367 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4753 | 1 | 12.00 | 23 | instock | 6.51 | -0.735337 | 120.00 | 0.078 | 33.0 | 0.357143 | 276.00 | 9.60 | 32.187500 |
| 368 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5950 | 1 | 46.00 | 4 | instock | 24.72 | 0.495655 | 138.00 | 0.090 | 7.0 | 0.545455 | 184.00 | 36.80 | 32.826087 |
| 369 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6585 | 1 | 19.00 | 29 | instock | 10.31 | -0.481897 | 190.00 | 0.124 | 39.0 | 0.294118 | 551.00 | 15.20 | 32.171053 |
| 370 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4240 | 1 | 28.00 | 29 | instock | 14.47 | -0.156046 | 252.00 | 0.164 | 38.0 | 0.268657 | 812.00 | 22.40 | 35.401786 |
| 371 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4077 | 1 | 22.90 | 34 | instock | 11.95 | -0.340695 | 274.80 | 0.179 | 46.0 | 0.300000 | 778.60 | 18.32 | 34.770742 |
| 372 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4194 | 1 | 10.80 | 29 | instock | 5.58 | -0.778783 | 151.20 | 0.099 | 43.0 | 0.388889 | 313.20 | 8.64 | 35.416667 |
| 373 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4070 | 1 | 23.40 | 32 | instock | 12.21 | -0.322592 | 234.00 | 0.153 | 42.0 | 0.270270 | 748.80 | 18.72 | 34.775641 |
| 374 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4785 | 1 | 10.10 | 20 | instock | 4.96 | -0.804127 | 90.90 | 0.059 | 29.0 | 0.367347 | 202.00 | 8.08 | 38.613861 |
| 375 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4611 | 1 | 26.20 | 29 | instock | 13.67 | -0.221217 | 288.20 | 0.188 | 40.0 | 0.318841 | 759.80 | 20.96 | 34.780534 |
| 376 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4926 | 1 | 7.90 | 40 | instock | 4.04 | -0.883780 | 118.50 | 0.077 | 55.0 | 0.315789 | 316.00 | 6.32 | 36.075949 |
| 377 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4566 | 1 | 28.50 | 19 | instock | 15.31 | -0.137944 | 228.00 | 0.149 | 27.0 | 0.347826 | 541.50 | 22.80 | 32.850877 |
| 378 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4231 | 1 | 11.10 | 22 | instock | 5.85 | -0.767922 | 111.00 | 0.072 | 32.0 | 0.370370 | 244.20 | 8.88 | 34.121622 |
| 379 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5394 | 1 | 10.70 | 29 | instock | 5.25 | -0.782404 | 96.30 | 0.063 | 38.0 | 0.268657 | 310.30 | 8.56 | 38.668224 |
| 380 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4703 | 1 | 19.80 | 42 | instock | 9.72 | -0.452933 | 237.60 | 0.155 | 54.0 | 0.250000 | 831.60 | 15.84 | 38.636364 |
| 381 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4707 | 1 | 22.80 | 21 | instock | 11.54 | -0.344316 | 159.60 | 0.104 | 28.0 | 0.285714 | 478.80 | 18.24 | 36.732456 |
| 382 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5807 | 1 | 27.30 | 12 | instock | 13.82 | -0.181390 | 109.20 | 0.071 | 16.0 | 0.285714 | 327.60 | 21.84 | 36.721612 |
| 383 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6573 | 1 | 68.30 | 5 | instock | 35.29 | 1.303041 | 273.20 | 0.178 | 9.0 | 0.571429 | 341.50 | 54.64 | 35.413616 |
| 384 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4600 | 1 | 26.50 | 15 | instock | 13.14 | -0.210355 | 185.50 | 0.121 | 22.0 | 0.378378 | 397.50 | 21.20 | 38.018868 |
| 385 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4596 | 1 | 43.90 | 7 | instock | 22.91 | 0.419623 | 219.50 | 0.143 | 12.0 | 0.526316 | 307.30 | 35.12 | 34.766515 |
| 386 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4598 | 1 | 41.80 | 5 | instock | 21.38 | 0.343592 | 209.00 | 0.136 | 10.0 | 0.666667 | 209.00 | 33.44 | 36.064593 |
| 387 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6575 | 1 | 41.80 | 7 | instock | 22.03 | 0.343592 | 167.20 | 0.109 | 11.0 | 0.444444 | 292.60 | 33.44 | 34.120813 |
| 388 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4215 | 1 | 26.50 | 20 | instock | 13.97 | -0.210355 | 185.50 | 0.121 | 27.0 | 0.297872 | 530.00 | 21.20 | 34.103774 |
| 389 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5491 | 1 | 26.50 | 18 | instock | 13.01 | -0.210355 | 212.00 | 0.138 | 26.0 | 0.363636 | 477.00 | 21.20 | 38.632075 |
| 390 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4163 | 1 | 10.80 | 26 | instock | 5.80 | -0.778783 | 118.80 | 0.077 | 37.0 | 0.349206 | 280.80 | 8.64 | 32.870370 |
| 391 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6094 | 1 | 13.40 | 24 | instock | 6.65 | -0.684649 | 134.00 | 0.087 | 34.0 | 0.344828 | 321.60 | 10.72 | 37.966418 |
| 392 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6093 | 1 | 12.60 | 51 | instock | 6.71 | -0.713613 | 189.00 | 0.123 | 66.0 | 0.256410 | 642.60 | 10.08 | 33.432540 |
| 393 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6095 | 1 | 29.80 | 31 | instock | 15.86 | -0.090876 | 298.00 | 0.194 | 41.0 | 0.277778 | 923.80 | 23.84 | 33.473154 |
| 394 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4067 | 1 | 22.00 | 22 | instock | 11.37 | -0.373280 | 154.00 | 0.100 | 29.0 | 0.274510 | 484.00 | 17.60 | 35.397727 |
| 395 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4670 | 1 | 17.00 | 30 | instock | 8.96 | -0.554308 | 204.00 | 0.133 | 42.0 | 0.333333 | 510.00 | 13.60 | 34.117647 |
| 396 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5477 | 1 | 19.80 | 18 | instock | 10.43 | -0.452933 | 118.80 | 0.077 | 24.0 | 0.285714 | 356.40 | 15.84 | 34.154040 |
| 397 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4671 | 1 | 21.90 | 28 | instock | 11.32 | -0.376901 | 219.00 | 0.143 | 38.0 | 0.303030 | 613.20 | 17.52 | 35.388128 |
| 398 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4920 | 1 | 24.40 | 16 | instock | 12.86 | -0.286387 | 146.40 | 0.095 | 22.0 | 0.315789 | 390.40 | 19.52 | 34.118852 |
| 399 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4919 | 1 | 24.40 | 10 | instock | 12.86 | -0.286387 | 122.00 | 0.080 | 15.0 | 0.400000 | 244.00 | 19.52 | 34.118852 |
| 400 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4918 | 1 | 37.20 | 15 | instock | 18.64 | 0.177046 | 297.60 | 0.194 | 23.0 | 0.421053 | 558.00 | 29.76 | 37.365591 |
| 401 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6618 | 1 | 13.50 | 49 | instock | 7.18 | -0.681028 | 189.00 | 0.123 | 63.0 | 0.250000 | 661.50 | 10.80 | 33.518519 |
| 402 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4934 | 1 | 22.20 | 28 | instock | 11.93 | -0.366039 | 199.80 | 0.130 | 37.0 | 0.276923 | 621.60 | 17.76 | 32.826577 |
| 403 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5778 | 1 | 5.80 | 44 | instock | 3.09 | -0.959812 | 98.60 | 0.064 | 61.0 | 0.323810 | 255.20 | 4.64 | 33.405172 |
| 404 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4096 | 1 | 22.80 | 18 | instock | 11.54 | -0.344316 | 136.80 | 0.089 | 24.0 | 0.285714 | 410.40 | 18.24 | 36.732456 |
| 405 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5738 | 1 | 14.60 | 15 | instock | 7.17 | -0.641202 | 102.20 | 0.067 | 22.0 | 0.378378 | 219.00 | 11.68 | 38.613014 |
| 406 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4300 | 1 | 44.00 | 2 | instock | 23.42 | 0.423244 | 88.00 | 0.057 | 4.0 | 0.666667 | 88.00 | 35.20 | 33.465909 |
| 407 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5963 | 1 | 13.50 | 34 | instock | 6.63 | -0.681028 | 135.00 | 0.088 | 44.0 | 0.256410 | 459.00 | 10.80 | 38.611111 |
| 408 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4682 | 1 | 9.10 | 34 | instock | 4.84 | -0.840333 | 100.10 | 0.065 | 45.0 | 0.278481 | 309.40 | 7.28 | 33.516484 |
| 409 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4733 | 1 | 16.80 | 38 | instock | 8.42 | -0.561550 | 184.80 | 0.121 | 49.0 | 0.252874 | 638.40 | 13.44 | 37.351190 |
| 410 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5958 | 1 | 8.70 | 44 | instock | 4.50 | -0.854815 | 130.50 | 0.085 | 59.0 | 0.291262 | 382.80 | 6.96 | 35.344828 |
| 411 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4687 | 1 | 30.10 | 10 | instock | 15.40 | -0.080014 | 210.70 | 0.137 | 17.0 | 0.518519 | 301.00 | 24.08 | 36.046512 |
| 412 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4177 | 1 | 13.50 | 28 | instock | 7.11 | -0.681028 | 148.50 | 0.097 | 39.0 | 0.328358 | 378.00 | 10.80 | 34.166667 |
| 413 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4192 | 1 | 17.80 | 32 | instock | 8.92 | -0.525344 | 178.00 | 0.116 | 42.0 | 0.270270 | 569.60 | 14.24 | 37.359551 |
| 414 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4912 | 1 | 25.90 | 34 | instock | 12.98 | -0.232078 | 259.00 | 0.169 | 44.0 | 0.256410 | 880.60 | 20.72 | 37.355212 |
| 415 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4914 | 1 | 25.90 | 24 | instock | 12.98 | -0.232078 | 181.30 | 0.118 | 31.0 | 0.254545 | 621.60 | 20.72 | 37.355212 |
| 416 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4909 | 1 | 25.90 | 14 | instock | 12.85 | -0.232078 | 155.40 | 0.101 | 20.0 | 0.352941 | 362.60 | 20.72 | 37.982625 |
| 417 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4915 | 1 | 25.90 | 28 | instock | 13.38 | -0.232078 | 284.90 | 0.186 | 39.0 | 0.328358 | 725.20 | 20.72 | 35.424710 |
| 418 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4564 | 1 | 21.70 | 28 | instock | 11.66 | -0.384142 | 217.00 | 0.142 | 38.0 | 0.303030 | 607.60 | 17.36 | 32.834101 |
| 419 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4176 | 1 | 13.50 | 18 | instock | 6.63 | -0.681028 | 108.00 | 0.070 | 26.0 | 0.363636 | 243.00 | 10.80 | 38.611111 |
| 420 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5747 | 1 | 24.50 | 12 | instock | 12.15 | -0.282766 | 122.50 | 0.080 | 17.0 | 0.344828 | 294.00 | 19.60 | 38.010204 |
| 421 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6578 | 1 | 40.00 | 7 | instock | 19.63 | 0.278421 | 160.00 | 0.104 | 11.0 | 0.444444 | 280.00 | 32.00 | 38.656250 |
| 422 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4147 | 1 | 33.00 | 100 | instock | 18.48 | 0.024982 | 264.00 | 0.172 | 108.0 | 0.076923 | 3300.00 | 26.40 | 30.000000 |
| 423 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5439 | 1 | 13.20 | 46 | instock | 6.68 | -0.691890 | 184.80 | 0.121 | 60.0 | 0.264151 | 607.20 | 10.56 | 36.742424 |
| 424 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6280 | 1 | 10.40 | 38 | instock | 5.53 | -0.793266 | 114.40 | 0.075 | 49.0 | 0.252874 | 395.20 | 8.32 | 33.533654 |
| 425 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4202 | 1 | 38.00 | 6 | instock | 19.63 | 0.206010 | 114.00 | 0.074 | 9.0 | 0.400000 | 228.00 | 30.40 | 35.427632 |
| 426 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4201 | 1 | 38.00 | 11 | instock | 19.24 | 0.206010 | 266.00 | 0.173 | 18.0 | 0.482759 | 418.00 | 30.40 | 36.710526 |
| 427 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4716 | 1 | 18.60 | 32 | instock | 9.23 | -0.496379 | 204.60 | 0.133 | 43.0 | 0.293333 | 595.20 | 14.88 | 37.970430 |
| 428 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4717 | 1 | 23.40 | 20 | instock | 11.73 | -0.322592 | 163.80 | 0.107 | 27.0 | 0.297872 | 468.00 | 18.72 | 37.339744 |
| 429 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4602 | 1 | 31.50 | 8 | instock | 16.93 | -0.029327 | 126.00 | 0.082 | 12.0 | 0.400000 | 252.00 | 25.20 | 32.817460 |
| 430 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4604 | 1 | 49.00 | 5 | instock | 25.06 | 0.604272 | 196.00 | 0.128 | 9.0 | 0.571429 | 245.00 | 39.20 | 36.071429 |
| 431 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6664 | 1 | 35.60 | 16 | instock | 19.31 | 0.119117 | 284.80 | 0.186 | 24.0 | 0.400000 | 569.60 | 28.48 | 32.198034 |
| 432 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4261 | 1 | 9.90 | 48 | instock | 5.01 | -0.811369 | 148.50 | 0.097 | 63.0 | 0.270270 | 475.20 | 7.92 | 36.742424 |
| 433 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4262 | 1 | 15.80 | 43 | instock | 8.33 | -0.597755 | 205.40 | 0.134 | 56.0 | 0.262626 | 679.40 | 12.64 | 34.098101 |
| 434 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4263 | 1 | 15.80 | 18 | instock | 8.49 | -0.597755 | 142.20 | 0.093 | 27.0 | 0.400000 | 284.40 | 12.64 | 32.832278 |
| 435 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4264 | 1 | 17.80 | 16 | instock | 9.20 | -0.525344 | 124.60 | 0.081 | 23.0 | 0.358974 | 284.80 | 14.24 | 35.393258 |
| 436 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4712 | 1 | 15.80 | 27 | instock | 8.57 | -0.597755 | 205.40 | 0.134 | 40.0 | 0.388060 | 426.60 | 12.64 | 32.199367 |
| 437 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4159 | 1 | 9.30 | 51 | instock | 4.90 | -0.833092 | 139.50 | 0.091 | 66.0 | 0.256410 | 474.30 | 7.44 | 34.139785 |
| 438 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4718 | 1 | 18.20 | 35 | instock | 9.78 | -0.510862 | 218.40 | 0.142 | 47.0 | 0.292683 | 637.00 | 14.56 | 32.829670 |
| 439 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4217 | 1 | 17.10 | 12 | instock | 9.28 | -0.550688 | 102.60 | 0.067 | 18.0 | 0.400000 | 205.20 | 13.68 | 32.163743 |
| 440 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5706 | 1 | 10.30 | 26 | instock | 5.32 | -0.796886 | 123.60 | 0.081 | 38.0 | 0.375000 | 267.80 | 8.24 | 35.436893 |
| 441 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4097 | 1 | 12.80 | 35 | instock | 6.48 | -0.706372 | 140.80 | 0.092 | 46.0 | 0.271605 | 448.00 | 10.24 | 36.718750 |
| 442 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4094 | 1 | 13.70 | 20 | instock | 7.15 | -0.673787 | 95.90 | 0.063 | 27.0 | 0.297872 | 274.00 | 10.96 | 34.762774 |
| 443 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5377 | 1 | 19.00 | 39 | instock | 10.01 | -0.481897 | 228.00 | 0.149 | 51.0 | 0.266667 | 741.00 | 15.20 | 34.144737 |
| 444 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6325 | 1 | 27.90 | 22 | instock | 15.14 | -0.159667 | 279.00 | 0.182 | 32.0 | 0.370370 | 613.80 | 22.32 | 32.168459 |
| 445 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4104 | 1 | 9.70 | 35 | instock | 5.11 | -0.818610 | 145.50 | 0.095 | 50.0 | 0.352941 | 339.50 | 7.76 | 34.149485 |
| 446 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5797 | 1 | 17.20 | 29 | instock | 9.24 | -0.547067 | 189.20 | 0.123 | 40.0 | 0.318841 | 498.80 | 13.76 | 32.848837 |
| 447 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4280 | 1 | 18.90 | 37 | instock | 9.57 | -0.485518 | 226.80 | 0.148 | 49.0 | 0.279070 | 699.30 | 15.12 | 36.706349 |
| 448 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6572 | 1 | 44.00 | 12 | instock | 22.28 | 0.423244 | 352.00 | 0.230 | 20.0 | 0.500000 | 528.00 | 35.20 | 36.704545 |
| 449 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6569 | 1 | 29.00 | 58 | instock | 15.28 | -0.119841 | 493.00 | 0.321 | 75.0 | 0.255639 | 1682.00 | 23.20 | 34.137931 |
| 450 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6570 | 1 | 29.20 | 19 | instock | 14.33 | -0.112600 | 262.80 | 0.171 | 28.0 | 0.382979 | 554.80 | 23.36 | 38.655822 |
| 451 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6568 | 1 | 72.00 | 7 | instock | 35.71 | 1.437002 | 288.00 | 0.188 | 11.0 | 0.444444 | 504.00 | 57.60 | 38.003472 |
| 452 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6299 | 1 | 78.00 | 0 | outofstock | 41.51 | 1.654236 | 312.00 | 0.203 | 4.0 | 2.000000 | 0.00 | 62.40 | 33.477564 |
| 453 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5061 | 1 | 52.60 | 5 | instock | 27.99 | 0.734613 | 157.80 | 0.103 | 8.0 | 0.461538 | 263.00 | 42.08 | 33.483840 |
| 454 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5062 | 1 | 45.00 | 12 | instock | 23.25 | 0.459450 | 405.00 | 0.264 | 21.0 | 0.545455 | 540.00 | 36.00 | 35.416667 |
| 455 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4211 | 1 | 48.50 | 5 | instock | 25.56 | 0.586169 | 145.50 | 0.095 | 8.0 | 0.461538 | 242.50 | 38.80 | 34.123711 |
| 456 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5063 | 1 | 67.00 | 1 | instock | 33.92 | 1.255974 | 67.00 | 0.044 | 2.0 | 0.666667 | 67.00 | 53.60 | 36.716418 |
| 457 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4212 | 1 | 39.80 | 12 | instock | 21.39 | 0.271180 | 318.40 | 0.208 | 20.0 | 0.500000 | 477.60 | 31.84 | 32.820352 |
| 458 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4213 | 1 | 58.80 | 10 | instock | 29.16 | 0.959088 | 352.80 | 0.230 | 16.0 | 0.461538 | 588.00 | 47.04 | 38.010204 |
| 459 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4210 | 1 | 79.80 | 4 | instock | 39.17 | 1.719406 | 239.40 | 0.156 | 7.0 | 0.545455 | 319.20 | 63.84 | 38.643484 |
| 460 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4728 | 1 | 29.50 | 14 | instock | 14.48 | -0.101738 | 147.50 | 0.096 | 19.0 | 0.303030 | 413.00 | 23.60 | 38.644068 |
| 461 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4793 | 1 | 18.70 | 15 | instock | 9.37 | -0.492759 | 130.90 | 0.085 | 22.0 | 0.378378 | 280.50 | 14.96 | 37.366310 |
| 462 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4788 | 1 | 12.30 | 10 | instock | 6.29 | -0.724475 | 36.90 | 0.024 | 13.0 | 0.260870 | 123.00 | 9.84 | 36.077236 |
| 463 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4790 | 1 | 11.10 | 22 | instock | 5.62 | -0.767922 | 111.00 | 0.072 | 32.0 | 0.370370 | 244.20 | 8.88 | 36.711712 |
| 464 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4792 | 1 | 21.00 | 29 | instock | 11.28 | -0.409486 | 252.00 | 0.164 | 41.0 | 0.342857 | 609.00 | 16.80 | 32.857143 |
| 465 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4784 | 1 | 28.50 | 21 | instock | 14.28 | -0.137944 | 285.00 | 0.186 | 31.0 | 0.384615 | 598.50 | 22.80 | 37.368421 |
| 466 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6884 | 1 | 46.50 | 9 | instock | 24.99 | 0.513758 | 232.50 | 0.152 | 14.0 | 0.434783 | 418.50 | 37.20 | 32.822581 |
| 467 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6887 | 1 | 21.80 | 15 | instock | 11.71 | -0.380521 | 109.00 | 0.071 | 20.0 | 0.285714 | 327.00 | 17.44 | 32.855505 |
| 468 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4962 | 1 | 11.30 | 23 | instock | 5.55 | -0.760681 | 90.40 | 0.059 | 31.0 | 0.296296 | 259.90 | 9.04 | 38.606195 |
| 469 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6920 | 1 | 50.50 | 9 | instock | 25.05 | 0.658581 | 404.00 | 0.263 | 17.0 | 0.615385 | 454.50 | 40.40 | 37.995050 |
| 470 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6928 | 1 | 19.00 | 15 | instock | 9.62 | -0.481897 | 133.00 | 0.087 | 22.0 | 0.378378 | 285.00 | 15.20 | 36.710526 |
| 471 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6301 | 1 | 40.50 | 0 | outofstock | 20.51 | 0.296524 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 32.40 | 36.697531 |
| 472 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4183 | 1 | 21.40 | 23 | instock | 10.61 | -0.395004 | 149.80 | 0.098 | 30.0 | 0.264151 | 492.20 | 17.12 | 38.025701 |
| 473 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4182 | 1 | 16.70 | 43 | instock | 8.46 | -0.565170 | 217.10 | 0.142 | 56.0 | 0.262626 | 718.10 | 13.36 | 36.676647 |
| 474 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5564 | 1 | 30.80 | 10 | instock | 16.07 | -0.054671 | 277.20 | 0.181 | 19.0 | 0.620690 | 308.00 | 24.64 | 34.780844 |
| 475 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5483 | 1 | 17.90 | 31 | instock | 9.71 | -0.521723 | 232.70 | 0.152 | 44.0 | 0.346667 | 554.90 | 14.32 | 32.192737 |
| 476 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5375 | 1 | 15.20 | 41 | instock | 8.09 | -0.619479 | 182.40 | 0.119 | 53.0 | 0.255319 | 623.20 | 12.16 | 33.470395 |
| 477 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5484 | 1 | 21.60 | 25 | instock | 11.61 | -0.387762 | 172.80 | 0.113 | 33.0 | 0.275862 | 540.00 | 17.28 | 32.812500 |
| 478 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4220 | 1 | 11.60 | 48 | instock | 5.75 | -0.749819 | 208.80 | 0.136 | 66.0 | 0.315789 | 556.80 | 9.28 | 38.038793 |
| 479 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4222 | 1 | 8.90 | 45 | instock | 4.74 | -0.847574 | 124.60 | 0.081 | 59.0 | 0.269231 | 400.50 | 7.12 | 33.426966 |
| 480 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6635 | 1 | 22.40 | 16 | instock | 10.99 | -0.358798 | 112.00 | 0.073 | 21.0 | 0.270270 | 358.40 | 17.92 | 38.671875 |
| 481 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6592 | 1 | 24.40 | 29 | instock | 12.10 | -0.286387 | 219.60 | 0.143 | 38.0 | 0.268657 | 707.60 | 19.52 | 38.012295 |
| 482 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5959 | 1 | 15.40 | 24 | instock | 7.72 | -0.612238 | 138.60 | 0.090 | 33.0 | 0.315789 | 369.60 | 12.32 | 37.337662 |
| 483 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4102 | 1 | 16.30 | 16 | instock | 8.00 | -0.579652 | 114.10 | 0.074 | 23.0 | 0.358974 | 260.80 | 13.04 | 38.650307 |
| 484 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6584 | 1 | 13.50 | 22 | instock | 6.91 | -0.681028 | 135.00 | 0.088 | 32.0 | 0.370370 | 297.00 | 10.80 | 36.018519 |
| 485 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4244 | 1 | 13.50 | 39 | instock | 6.63 | -0.681028 | 175.50 | 0.114 | 52.0 | 0.285714 | 526.50 | 10.80 | 38.611111 |
| 486 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4886 | 1 | 28.40 | 14 | instock | 14.53 | -0.141564 | 142.00 | 0.093 | 19.0 | 0.303030 | 397.60 | 22.72 | 36.047535 |
| 487 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5891 | 1 | 19.00 | 24 | instock | 9.72 | -0.481897 | 190.00 | 0.124 | 34.0 | 0.344828 | 456.00 | 15.20 | 36.052632 |
| 488 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5890 | 1 | 19.30 | 29 | instock | 9.77 | -0.471035 | 173.70 | 0.113 | 38.0 | 0.268657 | 559.70 | 15.44 | 36.722798 |
| 489 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4888 | 1 | 27.90 | 17 | instock | 14.85 | -0.159667 | 167.40 | 0.109 | 23.0 | 0.300000 | 474.30 | 22.32 | 33.467742 |
| 490 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6567 | 1 | 28.40 | 28 | instock | 14.67 | -0.141564 | 312.40 | 0.204 | 39.0 | 0.328358 | 795.20 | 22.72 | 35.431338 |
| 491 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6616 | 1 | 15.40 | 33 | instock | 7.88 | -0.612238 | 169.40 | 0.110 | 44.0 | 0.285714 | 508.20 | 12.32 | 36.038961 |
| 492 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4180 | 1 | 24.00 | 19 | instock | 12.28 | -0.300869 | 168.00 | 0.110 | 26.0 | 0.311111 | 456.00 | 19.20 | 36.041667 |
| 493 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4168 | 1 | 18.20 | 21 | instock | 9.40 | -0.510862 | 145.60 | 0.095 | 29.0 | 0.320000 | 382.20 | 14.56 | 35.439560 |
| 494 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4167 | 1 | 14.30 | 16 | instock | 7.24 | -0.652064 | 100.10 | 0.065 | 23.0 | 0.358974 | 228.80 | 11.44 | 36.713287 |
| 495 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4170 | 1 | 9.00 | 28 | instock | 4.51 | -0.843954 | 81.00 | 0.053 | 37.0 | 0.276923 | 252.00 | 7.20 | 37.361111 |
| 496 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4106 | 1 | 12.60 | 24 | instock | 6.64 | -0.713613 | 113.40 | 0.074 | 33.0 | 0.315789 | 302.40 | 10.08 | 34.126984 |
| 497 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6626 | 1 | 33.20 | 11 | instock | 16.47 | 0.032223 | 332.00 | 0.216 | 21.0 | 0.625000 | 365.20 | 26.56 | 37.989458 |
| 498 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6627 | 1 | 41.80 | 4 | instock | 22.24 | 0.343592 | 167.20 | 0.109 | 8.0 | 0.666667 | 167.20 | 33.44 | 33.492823 |
| 499 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6628 | 1 | 32.20 | 7 | instock | 16.80 | -0.003983 | 161.00 | 0.105 | 12.0 | 0.526316 | 225.40 | 25.76 | 34.782609 |
| 500 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6629 | 1 | 37.70 | 10 | instock | 19.48 | 0.195148 | 188.50 | 0.123 | 15.0 | 0.400000 | 377.00 | 30.16 | 35.411141 |
| 501 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6632 | 1 | 52.70 | 0 | outofstock | 26.41 | 0.738233 | 105.40 | 0.069 | 2.0 | 2.000000 | 0.00 | 42.16 | 37.357685 |
| 502 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6631 | 1 | 47.20 | 10 | instock | 24.39 | 0.539102 | 330.40 | 0.215 | 17.0 | 0.518519 | 472.00 | 37.76 | 35.407839 |
| 503 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5696 | 1 | 17.50 | 24 | instock | 9.49 | -0.536206 | 122.50 | 0.080 | 31.0 | 0.254545 | 420.00 | 14.00 | 32.214286 |
| 504 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4610 | 1 | 13.10 | 34 | instock | 6.50 | -0.695510 | 131.00 | 0.085 | 44.0 | 0.256410 | 445.40 | 10.48 | 37.977099 |
| 505 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4891 | 1 | 27.90 | 8 | instock | 14.70 | -0.159667 | 111.60 | 0.073 | 12.0 | 0.400000 | 223.20 | 22.32 | 34.139785 |
| 506 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4893 | 1 | 27.90 | 21 | instock | 14.99 | -0.159667 | 279.00 | 0.182 | 31.0 | 0.384615 | 585.90 | 22.32 | 32.840502 |
| 507 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6328 | 1 | 22.40 | 16 | instock | 11.23 | -0.358798 | 156.80 | 0.102 | 23.0 | 0.358974 | 358.40 | 17.92 | 37.332589 |
| 508 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4799 | 1 | 14.90 | 23 | instock | 7.39 | -0.630340 | 104.30 | 0.068 | 30.0 | 0.264151 | 342.70 | 11.92 | 38.003356 |
| 509 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5693 | 1 | 13.00 | 29 | instock | 6.52 | -0.699131 | 117.00 | 0.076 | 38.0 | 0.268657 | 377.00 | 10.40 | 37.307692 |
| 510 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4099 | 1 | 12.80 | 40 | instock | 6.41 | -0.706372 | 179.20 | 0.117 | 54.0 | 0.297872 | 512.00 | 10.24 | 37.402344 |
| 511 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5764 | 1 | 12.90 | 20 | instock | 6.33 | -0.702752 | 103.20 | 0.067 | 28.0 | 0.333333 | 258.00 | 10.32 | 38.662791 |
| 512 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4221 | 1 | 12.80 | 42 | instock | 6.48 | -0.706372 | 166.40 | 0.109 | 55.0 | 0.268041 | 537.60 | 10.24 | 36.718750 |
| 513 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6137 | 1 | 46.00 | 7 | instock | 24.00 | 0.495655 | 276.00 | 0.180 | 13.0 | 0.600000 | 322.00 | 36.80 | 34.782609 |
| 514 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4270 | 1 | 15.50 | 22 | instock | 8.25 | -0.608617 | 155.00 | 0.101 | 32.0 | 0.370370 | 341.00 | 12.40 | 33.467742 |
| 515 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6926 | 1 | 49.90 | 12 | instock | 27.07 | 0.636857 | 449.10 | 0.293 | 21.0 | 0.545455 | 598.80 | 39.92 | 32.189379 |
| 516 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4646 | 1 | 21.50 | 27 | instock | 10.89 | -0.391383 | 215.00 | 0.140 | 37.0 | 0.312500 | 580.50 | 17.20 | 36.686047 |
| 517 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4621 | 1 | 16.50 | 36 | instock | 8.53 | -0.572411 | 198.00 | 0.129 | 48.0 | 0.285714 | 594.00 | 13.20 | 35.378788 |
| 518 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4620 | 1 | 11.90 | 28 | instock | 6.03 | -0.738957 | 154.70 | 0.101 | 41.0 | 0.376812 | 333.20 | 9.52 | 36.659664 |
| 519 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5904 | 1 | 18.80 | 27 | instock | 9.32 | -0.489138 | 244.40 | 0.159 | 40.0 | 0.388060 | 507.60 | 15.04 | 38.031915 |
| 520 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5906 | 1 | 19.80 | 38 | instock | 9.72 | -0.452933 | 217.80 | 0.142 | 49.0 | 0.252874 | 752.40 | 15.84 | 38.636364 |
| 521 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4758 | 1 | 24.30 | 35 | instock | 12.93 | -0.290007 | 291.60 | 0.190 | 47.0 | 0.292683 | 850.50 | 19.44 | 33.487654 |
| 522 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5519 | 1 | 12.90 | 35 | instock | 7.00 | -0.702752 | 167.70 | 0.109 | 48.0 | 0.313253 | 451.50 | 10.32 | 32.170543 |
| 523 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5522 | 1 | 48.40 | 8 | instock | 26.26 | 0.582549 | 193.60 | 0.126 | 12.0 | 0.400000 | 387.20 | 38.72 | 32.179752 |
| 524 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5523 | 1 | 60.40 | 9 | instock | 31.83 | 1.017017 | 362.40 | 0.236 | 15.0 | 0.500000 | 543.60 | 48.32 | 34.126656 |
| 525 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5520 | 1 | 38.60 | 12 | instock | 19.15 | 0.227734 | 347.40 | 0.227 | 21.0 | 0.545455 | 463.20 | 30.88 | 37.985751 |
| 526 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5524 | 1 | 38.60 | 9 | instock | 19.74 | 0.227734 | 231.60 | 0.151 | 15.0 | 0.500000 | 347.40 | 30.88 | 36.075130 |
| 527 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5000 | 1 | 27.30 | 26 | instock | 14.53 | -0.181390 | 218.40 | 0.142 | 34.0 | 0.266667 | 709.80 | 21.84 | 33.470696 |
| 528 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5003 | 1 | 48.70 | 4 | instock | 24.16 | 0.593411 | 97.40 | 0.064 | 6.0 | 0.400000 | 194.80 | 38.96 | 37.987680 |
| 529 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5006 | 1 | 48.70 | 5 | instock | 24.91 | 0.593411 | 194.80 | 0.127 | 9.0 | 0.571429 | 243.50 | 38.96 | 36.062628 |
| 530 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5004 | 1 | 59.40 | 4 | instock | 29.77 | 0.980811 | 118.80 | 0.077 | 6.0 | 0.400000 | 237.60 | 47.52 | 37.352694 |
| 531 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4614 | 1 | 19.00 | 23 | instock | 10.31 | -0.481897 | 133.00 | 0.087 | 30.0 | 0.264151 | 437.00 | 15.20 | 32.171053 |
| 532 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4723 | 1 | 29.00 | 19 | instock | 15.43 | -0.119841 | 174.00 | 0.113 | 25.0 | 0.272727 | 551.00 | 23.20 | 33.491379 |
| 533 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4722 | 1 | 13.70 | 18 | instock | 6.72 | -0.673787 | 109.60 | 0.071 | 26.0 | 0.363636 | 246.60 | 10.96 | 38.686131 |
| 534 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4786 | 1 | 12.10 | 32 | instock | 6.56 | -0.731716 | 145.20 | 0.095 | 44.0 | 0.315789 | 387.20 | 9.68 | 32.231405 |
| 535 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7025 | 1 | 69.00 | 8 | instock | 34.22 | 1.328385 | 345.00 | 0.225 | 13.0 | 0.476190 | 552.00 | 55.20 | 38.007246 |
| 536 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7023 | 1 | 27.50 | 23 | instock | 14.21 | -0.174149 | 247.50 | 0.161 | 32.0 | 0.327273 | 632.50 | 22.00 | 35.409091 |
| 537 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5960 | 1 | 12.70 | 40 | instock | 6.36 | -0.709993 | 152.40 | 0.099 | 52.0 | 0.260870 | 508.00 | 10.16 | 37.401575 |
| 538 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5956 | 1 | 17.20 | 32 | instock | 8.80 | -0.547067 | 206.40 | 0.135 | 44.0 | 0.315789 | 550.40 | 13.76 | 36.046512 |
| 539 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5896 | 1 | 24.70 | 23 | instock | 12.76 | -0.275525 | 271.70 | 0.177 | 34.0 | 0.385965 | 568.10 | 19.76 | 35.425101 |
| 540 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5618 | 1 | 71.30 | 5 | instock | 36.84 | 1.411658 | 285.20 | 0.186 | 9.0 | 0.571429 | 356.50 | 57.04 | 35.413745 |
| 541 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5619 | 1 | 71.30 | 10 | instock | 38.31 | 1.411658 | 356.50 | 0.232 | 15.0 | 0.400000 | 713.00 | 57.04 | 32.836606 |
| 542 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5615 | 1 | 56.40 | 5 | instock | 30.60 | 0.872194 | 225.60 | 0.147 | 9.0 | 0.571429 | 282.00 | 45.12 | 32.180851 |
| 543 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4929 | 1 | 16.70 | 26 | instock | 8.28 | -0.565170 | 133.60 | 0.087 | 34.0 | 0.266667 | 434.20 | 13.36 | 38.023952 |
| 544 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4923 | 1 | 7.00 | 0 | outofstock | 3.65 | -0.916365 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 5.60 | 34.821429 |
| 545 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5609 | 1 | 38.60 | 7 | instock | 20.54 | 0.227734 | 193.00 | 0.126 | 12.0 | 0.526316 | 270.20 | 30.88 | 33.484456 |
| 546 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4681 | 1 | 7.10 | 33 | instock | 3.56 | -0.912744 | 85.20 | 0.056 | 45.0 | 0.307692 | 234.30 | 5.68 | 37.323944 |
| 547 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4680 | 1 | 6.30 | 35 | instock | 3.29 | -0.941709 | 75.60 | 0.049 | 47.0 | 0.292683 | 220.50 | 5.04 | 34.722222 |
| 548 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4352 | 1 | 225.00 | 0 | outofstock | 137.81 | 6.976466 | 2475.00 | 1.614 | 11.0 | 2.000000 | 0.00 | 180.00 | 23.438889 |
| 549 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4074 | 1 | 12.70 | 30 | instock | 6.76 | -0.709993 | 152.40 | 0.099 | 42.0 | 0.333333 | 381.00 | 10.16 | 33.464567 |
| 550 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5608 | 1 | 30.50 | 11 | instock | 15.29 | -0.065532 | 183.00 | 0.119 | 17.0 | 0.428571 | 335.50 | 24.40 | 37.336066 |
| 551 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5611 | 1 | 63.40 | 14 | instock | 33.74 | 1.125634 | 507.20 | 0.331 | 22.0 | 0.444444 | 887.60 | 50.72 | 33.477918 |
| 552 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4307 | 1 | 10.90 | 37 | instock | 5.80 | -0.775163 | 152.60 | 0.100 | 51.0 | 0.318182 | 403.30 | 8.72 | 33.486239 |
| 553 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4306 | 1 | 10.70 | 52 | instock | 5.31 | -0.782404 | 160.50 | 0.105 | 67.0 | 0.252101 | 556.40 | 8.56 | 37.967290 |
| 554 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6073 | 1 | 24.50 | 29 | instock | 12.41 | -0.282766 | 220.50 | 0.144 | 38.0 | 0.268657 | 710.50 | 19.60 | 36.683673 |
| 555 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4892 | 1 | 20.10 | 30 | instock | 10.90 | -0.442071 | 180.90 | 0.118 | 39.0 | 0.260870 | 603.00 | 16.08 | 32.213930 |
| 556 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4071 | 1 | 33.20 | 19 | instock | 17.15 | 0.032223 | 332.00 | 0.216 | 29.0 | 0.416667 | 630.80 | 26.56 | 35.429217 |
| 557 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4963 | 1 | 7.00 | 41 | instock | 3.44 | -0.916365 | 91.00 | 0.059 | 54.0 | 0.273684 | 287.00 | 5.60 | 38.571429 |
| 558 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4064 | 1 | 14.40 | 32 | instock | 7.66 | -0.648443 | 144.00 | 0.094 | 42.0 | 0.270270 | 460.80 | 11.52 | 33.506944 |
| 559 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4066 | 1 | 20.80 | 27 | instock | 10.42 | -0.416727 | 166.40 | 0.109 | 35.0 | 0.258065 | 561.60 | 16.64 | 37.379808 |
| 560 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5739 | 1 | 10.70 | 13 | instock | 5.53 | -0.782404 | 42.80 | 0.028 | 17.0 | 0.266667 | 139.10 | 8.56 | 35.397196 |
| 561 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4974 | 1 | 23.00 | 10 | instock | 12.12 | -0.337075 | 115.00 | 0.075 | 15.0 | 0.400000 | 230.00 | 18.40 | 34.130435 |
| 562 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4976 | 1 | 16.45 | 0 | outofstock | 8.07 | -0.574222 | 115.15 | 0.075 | 7.0 | 2.000000 | 0.00 | 13.16 | 38.677812 |
| 563 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4725 | 1 | 23.40 | 13 | instock | 12.33 | -0.322592 | 140.40 | 0.092 | 19.0 | 0.375000 | 304.20 | 18.72 | 34.134615 |
| 564 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5382 | 1 | 22.80 | 30 | instock | 11.54 | -0.344316 | 228.00 | 0.149 | 40.0 | 0.285714 | 684.00 | 18.24 | 36.732456 |
| 565 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4086 | 1 | 16.40 | 30 | instock | 8.13 | -0.576032 | 180.40 | 0.118 | 41.0 | 0.309859 | 492.00 | 13.12 | 38.033537 |
| 566 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4084 | 1 | 23.20 | 23 | instock | 11.63 | -0.329833 | 162.40 | 0.106 | 30.0 | 0.264151 | 533.60 | 18.56 | 37.338362 |
| 567 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5380 | 1 | 18.00 | 27 | instock | 9.77 | -0.518103 | 180.00 | 0.117 | 37.0 | 0.312500 | 486.00 | 14.40 | 32.152778 |
| 568 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4207 | 1 | 6.70 | 30 | instock | 3.63 | -0.927227 | 100.50 | 0.066 | 45.0 | 0.400000 | 201.00 | 5.36 | 32.276119 |
| 569 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4208 | 1 | 7.60 | 35 | instock | 3.77 | -0.894642 | 76.00 | 0.050 | 45.0 | 0.250000 | 266.00 | 6.08 | 37.993421 |
| 570 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6072 | 1 | 13.60 | 3 | instock | 7.03 | -0.677408 | 13.60 | 0.009 | 4.0 | 0.285714 | 40.80 | 10.88 | 35.386029 |
| 571 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4056 | 1 | 12.70 | 38 | instock | 6.36 | -0.709993 | 139.70 | 0.091 | 49.0 | 0.252874 | 482.60 | 10.16 | 37.401575 |
| 572 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4052 | 1 | 33.70 | 0 | outofstock | 18.11 | 0.050326 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 26.96 | 32.826409 |
| 573 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6617 | 1 | 9.90 | 33 | instock | 5.22 | -0.811369 | 108.90 | 0.071 | 44.0 | 0.285714 | 326.70 | 7.92 | 34.090909 |
| 574 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5465 | 1 | 54.80 | 12 | instock | 28.60 | 0.814265 | 438.40 | 0.286 | 20.0 | 0.500000 | 657.60 | 43.84 | 34.762774 |
| 575 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4889 | 1 | 25.30 | 16 | instock | 12.55 | -0.253802 | 151.80 | 0.099 | 22.0 | 0.315789 | 404.80 | 20.24 | 37.994071 |
| 576 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4890 | 1 | 17.00 | 19 | instock | 8.78 | -0.554308 | 136.00 | 0.089 | 27.0 | 0.347826 | 323.00 | 13.60 | 35.441176 |
| 577 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4057 | 1 | 8.70 | 29 | instock | 4.36 | -0.854815 | 121.80 | 0.079 | 43.0 | 0.388889 | 252.30 | 6.96 | 37.356322 |
| 578 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4045 | 1 | 42.60 | 5 | instock | 22.01 | 0.372556 | 127.80 | 0.083 | 8.0 | 0.461538 | 213.00 | 34.08 | 35.416667 |
| 579 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4042 | 1 | 31.20 | 15 | instock | 15.48 | -0.040188 | 249.60 | 0.163 | 23.0 | 0.421053 | 468.00 | 24.96 | 37.980769 |
| 580 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4049 | 1 | 19.30 | 25 | instock | 10.27 | -0.471035 | 193.00 | 0.126 | 35.0 | 0.333333 | 482.50 | 15.44 | 33.484456 |
| 581 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4048 | 1 | 22.80 | 24 | instock | 11.78 | -0.344316 | 273.60 | 0.178 | 36.0 | 0.400000 | 547.20 | 18.24 | 35.416667 |
| 582 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4051 | 1 | 7.70 | 0 | outofstock | 4.14 | -0.891021 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 6.16 | 32.792208 |
| 583 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6620 | 1 | 51.00 | 11 | instock | 27.14 | 0.676684 | 357.00 | 0.233 | 18.0 | 0.482759 | 561.00 | 40.80 | 33.480392 |
| 584 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4862 | 1 | 9.90 | 35 | instock | 4.86 | -0.811369 | 128.70 | 0.084 | 48.0 | 0.313253 | 346.50 | 7.92 | 38.636364 |
| 585 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4669 | 1 | 20.20 | 21 | instock | 10.65 | -0.438450 | 141.40 | 0.092 | 28.0 | 0.285714 | 424.20 | 16.16 | 34.096535 |
| 586 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4674 | 1 | 19.00 | 24 | instock | 9.91 | -0.481897 | 133.00 | 0.087 | 31.0 | 0.254545 | 456.00 | 15.20 | 34.802632 |
| 587 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4673 | 1 | 19.80 | 17 | instock | 10.33 | -0.452933 | 99.00 | 0.065 | 22.0 | 0.256410 | 336.60 | 15.84 | 34.785354 |
| 588 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4899 | 1 | 21.20 | 18 | instock | 11.17 | -0.402245 | 127.20 | 0.083 | 24.0 | 0.285714 | 381.60 | 16.96 | 34.139151 |
| 589 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4900 | 1 | 20.80 | 11 | instock | 10.75 | -0.416727 | 104.00 | 0.068 | 16.0 | 0.370370 | 228.80 | 16.64 | 35.396635 |
| 590 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4287 | 1 | 38.60 | 8 | instock | 20.34 | 0.227734 | 270.20 | 0.176 | 15.0 | 0.608696 | 308.80 | 30.88 | 34.132124 |
| 591 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4286 | 1 | 69.80 | 6 | instock | 36.06 | 1.357350 | 209.40 | 0.137 | 9.0 | 0.400000 | 418.80 | 55.84 | 35.422636 |
| 592 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6666 | 1 | 48.50 | 7 | instock | 25.56 | 0.586169 | 291.00 | 0.190 | 13.0 | 0.600000 | 339.50 | 38.80 | 34.123711 |
| 593 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6665 | 1 | 27.70 | 16 | instock | 14.60 | -0.166908 | 138.50 | 0.090 | 21.0 | 0.270270 | 443.20 | 22.16 | 34.115523 |
| 594 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4075 | 1 | 14.70 | 35 | instock | 7.97 | -0.637581 | 147.00 | 0.096 | 45.0 | 0.250000 | 514.50 | 11.76 | 32.227891 |
| 595 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6615 | 1 | 32.80 | 12 | instock | 16.95 | 0.017741 | 196.80 | 0.128 | 18.0 | 0.400000 | 393.60 | 26.24 | 35.403963 |
| 596 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4778 | 1 | 13.90 | 20 | instock | 6.89 | -0.666546 | 125.10 | 0.082 | 29.0 | 0.367347 | 278.00 | 11.12 | 38.039568 |
| 597 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6207 | 1 | 25.20 | 22 | instock | 12.89 | -0.257422 | 226.80 | 0.148 | 31.0 | 0.339623 | 554.40 | 20.16 | 36.061508 |
| 598 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4662 | 1 | 20.80 | 13 | instock | 10.96 | -0.416727 | 124.80 | 0.081 | 19.0 | 0.375000 | 270.40 | 16.64 | 34.134615 |
| 599 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4158 | 1 | 18.50 | 36 | instock | 9.94 | -0.500000 | 240.50 | 0.157 | 49.0 | 0.305882 | 666.00 | 14.80 | 32.837838 |
| 600 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5697 | 1 | 29.90 | 14 | instock | 15.29 | -0.087256 | 149.50 | 0.097 | 19.0 | 0.303030 | 418.60 | 23.92 | 36.078595 |
| 601 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6221 | 1 | 23.50 | 22 | instock | 12.02 | -0.318972 | 164.50 | 0.107 | 29.0 | 0.274510 | 517.00 | 18.80 | 36.063830 |
| 602 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4245 | 1 | 8.90 | 27 | instock | 4.69 | -0.847574 | 80.10 | 0.052 | 36.0 | 0.285714 | 240.30 | 7.12 | 34.129213 |
| 603 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4711 | 1 | 55.40 | 6 | instock | 29.77 | 0.835988 | 221.60 | 0.145 | 10.0 | 0.500000 | 332.40 | 44.32 | 32.829422 |
| 604 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4095 | 1 | 12.60 | 42 | instock | 6.31 | -0.713613 | 163.80 | 0.107 | 55.0 | 0.268041 | 529.20 | 10.08 | 37.400794 |
| 605 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5711 | 1 | 25.00 | 23 | instock | 12.40 | -0.264663 | 250.00 | 0.163 | 33.0 | 0.357143 | 575.00 | 20.00 | 38.000000 |
| 606 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4166 | 1 | 20.50 | 20 | instock | 10.27 | -0.427589 | 184.50 | 0.120 | 29.0 | 0.367347 | 410.00 | 16.40 | 37.378049 |
| 607 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5487 | 1 | 43.50 | 0 | outofstock | 23.37 | 0.405141 | 391.50 | 0.255 | 9.0 | 2.000000 | 0.00 | 34.80 | 32.844828 |
| 608 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5486 | 1 | 49.50 | 9 | instock | 26.09 | 0.622375 | 247.50 | 0.161 | 14.0 | 0.434783 | 445.50 | 39.60 | 34.116162 |
| 609 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5485 | 1 | 33.40 | 14 | instock | 16.57 | 0.039464 | 334.00 | 0.218 | 24.0 | 0.526316 | 467.60 | 26.72 | 37.986527 |
| 610 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4755 | 1 | 7.40 | 47 | instock | 3.98 | -0.901883 | 103.60 | 0.068 | 61.0 | 0.259259 | 347.80 | 5.92 | 32.770270 |
| 611 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6070 | 1 | 9.30 | 30 | instock | 4.95 | -0.833092 | 102.30 | 0.067 | 41.0 | 0.309859 | 279.00 | 7.44 | 33.467742 |
| 612 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6930 | 1 | 8.40 | 28 | instock | 4.34 | -0.865677 | 75.60 | 0.049 | 37.0 | 0.276923 | 235.20 | 6.72 | 35.416667 |
| 613 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4734 | 1 | 15.30 | 27 | instock | 8.22 | -0.615858 | 122.40 | 0.080 | 35.0 | 0.258065 | 413.10 | 12.24 | 32.843137 |
| 614 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6751 | 1 | 46.50 | 7 | instock | 24.51 | 0.513758 | 279.00 | 0.182 | 13.0 | 0.600000 | 325.50 | 37.20 | 34.112903 |
| 615 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5504 | 1 | 13.80 | 19 | instock | 6.77 | -0.670167 | 110.40 | 0.072 | 27.0 | 0.347826 | 262.20 | 11.04 | 38.677536 |
| 616 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5753 | 1 | 10.10 | 31 | instock | 5.01 | -0.804127 | 101.00 | 0.066 | 41.0 | 0.277778 | 313.10 | 8.08 | 37.995050 |
| 617 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4867 | 1 | 9.90 | 121 | instock | 4.86 | -0.811369 | 356.40 | 0.232 | 157.0 | 0.258993 | 1197.90 | 7.92 | 38.636364 |
| 618 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4870 | 1 | 9.30 | 0 | outofstock | 4.81 | -0.833092 | 148.80 | 0.097 | 16.0 | 2.000000 | 0.00 | 7.44 | 35.349462 |
| 619 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4601 | 1 | 16.10 | 24 | instock | 8.57 | -0.586894 | 112.70 | 0.073 | 31.0 | 0.254545 | 386.40 | 12.88 | 33.462733 |
| 620 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6663 | 1 | 50.40 | 6 | instock | 26.04 | 0.654960 | 302.40 | 0.197 | 12.0 | 0.666667 | 302.40 | 40.32 | 35.416667 |
| 621 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4285 | 1 | 41.00 | 5 | instock | 22.03 | 0.314627 | 164.00 | 0.107 | 9.0 | 0.571429 | 205.00 | 32.80 | 32.835366 |
| 622 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4283 | 1 | 27.00 | 0 | outofstock | 13.25 | -0.192252 | 216.00 | 0.141 | 8.0 | 2.000000 | 0.00 | 21.60 | 38.657407 |
| 623 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4930 | 1 | 17.50 | 29 | instock | 9.31 | -0.536206 | 210.00 | 0.137 | 41.0 | 0.342857 | 507.50 | 14.00 | 33.500000 |
| 624 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6042 | 1 | 8.50 | 25 | instock | 4.57 | -0.862056 | 76.50 | 0.050 | 34.0 | 0.305085 | 212.50 | 6.80 | 32.794118 |
| 625 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4178 | 1 | 11.50 | 21 | instock | 6.18 | -0.753440 | 115.00 | 0.075 | 31.0 | 0.384615 | 241.50 | 9.20 | 32.826087 |
| 626 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4179 | 1 | 24.00 | 0 | outofstock | 13.02 | -0.300869 | 144.00 | 0.094 | 6.0 | 2.000000 | 0.00 | 19.20 | 32.187500 |
| 627 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4087 | 1 | 14.40 | 15 | instock | 7.81 | -0.648443 | 100.80 | 0.066 | 22.0 | 0.378378 | 216.00 | 11.52 | 32.204861 |
| 628 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4615 | 1 | 24.00 | 16 | instock | 12.28 | -0.300869 | 168.00 | 0.110 | 23.0 | 0.358974 | 384.00 | 19.20 | 36.041667 |
| 629 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4187 | 1 | 13.30 | 26 | instock | 6.67 | -0.688269 | 106.40 | 0.069 | 34.0 | 0.266667 | 345.80 | 10.64 | 37.312030 |
| 630 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4186 | 1 | 16.60 | 29 | instock | 9.01 | -0.568791 | 182.60 | 0.119 | 40.0 | 0.318841 | 481.40 | 13.28 | 32.153614 |
| 631 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4190 | 1 | 12.10 | 27 | instock | 6.13 | -0.731716 | 121.00 | 0.079 | 37.0 | 0.312500 | 326.70 | 9.68 | 36.673554 |
| 632 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5566 | 1 | 27.50 | 12 | instock | 14.63 | -0.174149 | 137.50 | 0.090 | 17.0 | 0.344828 | 330.00 | 22.00 | 33.500000 |
| 633 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4174 | 1 | 5.70 | 43 | instock | 2.92 | -0.963432 | 74.10 | 0.048 | 56.0 | 0.262626 | 245.10 | 4.56 | 35.964912 |
| 634 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4172 | 1 | 5.70 | 31 | instock | 2.95 | -0.963432 | 68.40 | 0.045 | 43.0 | 0.324324 | 176.70 | 4.56 | 35.307018 |
| 635 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4173 | 1 | 5.70 | 49 | instock | 2.97 | -0.963432 | 85.50 | 0.056 | 64.0 | 0.265487 | 279.30 | 4.56 | 34.868421 |
| 636 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5779 | 1 | 5.80 | 30 | instock | 2.88 | -0.959812 | 52.20 | 0.034 | 39.0 | 0.260870 | 174.00 | 4.64 | 37.931034 |
| 637 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4759 | 1 | 16.90 | 26 | instock | 8.30 | -0.557929 | 219.70 | 0.143 | 39.0 | 0.400000 | 439.40 | 13.52 | 38.609467 |
| 638 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7338 | 1 | 16.30 | 40 | instock | 8.00 | -0.579652 | 211.90 | 0.138 | 53.0 | 0.279570 | 652.00 | 13.04 | 38.650307 |
| 639 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4153 | 1 | 29.00 | 30 | instock | 15.13 | -0.119841 | 261.00 | 0.170 | 39.0 | 0.260870 | 870.00 | 23.20 | 34.784483 |
| 640 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4152 | 1 | 19.20 | 14 | instock | 9.52 | -0.474656 | 115.20 | 0.075 | 20.0 | 0.352941 | 268.80 | 15.36 | 38.020833 |
| 641 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4683 | 1 | 9.10 | 43 | instock | 4.84 | -0.840333 | 136.50 | 0.089 | 58.0 | 0.297030 | 391.30 | 7.28 | 33.516484 |
| 642 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4269 | 1 | 10.20 | 28 | instock | 5.32 | -0.800507 | 122.40 | 0.080 | 40.0 | 0.352941 | 285.60 | 8.16 | 34.803922 |
| 643 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4297 | 1 | 19.00 | 33 | instock | 10.31 | -0.481897 | 190.00 | 0.124 | 43.0 | 0.263158 | 627.00 | 15.20 | 32.171053 |
| 644 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6279 | 1 | 45.90 | 10 | instock | 22.77 | 0.492035 | 275.40 | 0.180 | 16.0 | 0.461538 | 459.00 | 36.72 | 37.990196 |
| 645 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4863 | 1 | 8.20 | 54 | instock | 4.11 | -0.872918 | 131.20 | 0.086 | 70.0 | 0.258065 | 442.80 | 6.56 | 37.347561 |
| 646 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4197 | 1 | 9.40 | 32 | instock | 5.10 | -0.829471 | 122.20 | 0.080 | 45.0 | 0.337662 | 300.80 | 7.52 | 32.180851 |
| 647 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4649 | 1 | 16.50 | 18 | instock | 8.10 | -0.572411 | 115.50 | 0.075 | 25.0 | 0.325581 | 297.00 | 13.20 | 38.636364 |
| 648 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4648 | 1 | 24.30 | 22 | instock | 12.68 | -0.290007 | 218.70 | 0.143 | 31.0 | 0.339623 | 534.60 | 19.44 | 34.773663 |
| 649 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4191 | 1 | 9.30 | 30 | instock | 4.76 | -0.833092 | 111.60 | 0.073 | 42.0 | 0.333333 | 279.00 | 7.44 | 36.021505 |
| 650 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6047 | 1 | 10.90 | 29 | instock | 5.58 | -0.775163 | 119.90 | 0.078 | 40.0 | 0.318841 | 316.10 | 8.72 | 36.009174 |
| 651 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4188 | 1 | 9.50 | 51 | instock | 5.06 | -0.825851 | 152.00 | 0.099 | 67.0 | 0.271186 | 484.50 | 7.60 | 33.421053 |
| 652 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4232 | 1 | 11.10 | 37 | instock | 5.62 | -0.767922 | 133.20 | 0.087 | 49.0 | 0.279070 | 410.70 | 8.88 | 36.711712 |
| 653 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6278 | 1 | 9.00 | 24 | instock | 4.65 | -0.843954 | 90.00 | 0.059 | 34.0 | 0.344828 | 216.00 | 7.20 | 35.416667 |
| 654 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4865 | 1 | 9.80 | 48 | instock | 5.16 | -0.814989 | 147.00 | 0.096 | 63.0 | 0.270270 | 470.40 | 7.84 | 34.183673 |
| 655 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4059 | 1 | 8.70 | 34 | instock | 4.32 | -0.854815 | 139.20 | 0.091 | 50.0 | 0.380952 | 295.80 | 6.96 | 37.931034 |
| 656 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4924 | 1 | 12.80 | 24 | instock | 6.28 | -0.706372 | 89.60 | 0.058 | 31.0 | 0.254545 | 307.20 | 10.24 | 38.671875 |
| 657 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4925 | 1 | 23.20 | 38 | instock | 11.39 | -0.329833 | 255.20 | 0.166 | 49.0 | 0.252874 | 881.60 | 18.56 | 38.631466 |
| 658 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4931 | 1 | 27.80 | 34 | instock | 15.08 | -0.163287 | 278.00 | 0.181 | 44.0 | 0.256410 | 945.20 | 22.24 | 32.194245 |
| 659 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4933 | 1 | 18.40 | 24 | instock | 9.22 | -0.503621 | 202.40 | 0.132 | 35.0 | 0.372881 | 441.60 | 14.72 | 37.364130 |
| 660 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4937 | 1 | 9.90 | 26 | instock | 4.86 | -0.811369 | 108.90 | 0.071 | 37.0 | 0.349206 | 257.40 | 7.92 | 38.636364 |
| 661 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4876 | 1 | 22.80 | 0 | outofstock | 11.90 | -0.344316 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 18.24 | 34.758772 |
| 662 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4860 | 1 | 8.70 | 29 | instock | 4.63 | -0.854815 | 78.30 | 0.051 | 38.0 | 0.268657 | 252.30 | 6.96 | 33.477011 |
| 663 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4200 | 0 | 5.80 | 33 | instock | 3.12 | -0.959812 | 81.20 | 0.053 | 47.0 | 0.350000 | 191.40 | 4.64 | 32.758621 |
| 664 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4083 | 1 | 17.00 | 21 | instock | 8.78 | -0.554308 | 153.00 | 0.100 | 30.0 | 0.352941 | 357.00 | 13.60 | 35.441176 |
| 665 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5695 | 1 | 6.50 | 33 | instock | 3.53 | -0.934468 | 104.00 | 0.068 | 49.0 | 0.390244 | 214.50 | 5.20 | 32.115385 |
| 666 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5479 | 1 | 10.20 | 38 | instock | 5.16 | -0.800507 | 122.40 | 0.080 | 50.0 | 0.272727 | 387.60 | 8.16 | 36.764706 |
| 667 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5480 | 1 | 10.40 | 23 | instock | 5.21 | -0.793266 | 104.00 | 0.068 | 33.0 | 0.357143 | 239.20 | 8.32 | 37.379808 |
| 668 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4268 | 1 | 15.20 | 15 | instock | 7.54 | -0.619479 | 106.40 | 0.069 | 22.0 | 0.378378 | 228.00 | 12.16 | 37.993421 |
| 669 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4250 | 1 | 19.50 | 24 | instock | 9.97 | -0.463794 | 214.50 | 0.140 | 35.0 | 0.372881 | 468.00 | 15.60 | 36.089744 |
| 670 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4058 | 1 | 8.70 | 39 | instock | 4.72 | -0.854815 | 113.10 | 0.074 | 52.0 | 0.285714 | 339.30 | 6.96 | 32.183908 |
| 671 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4063 | 1 | 14.50 | 33 | instock | 7.19 | -0.644823 | 174.00 | 0.113 | 45.0 | 0.307692 | 478.50 | 11.60 | 38.017241 |
| 672 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4062 | 1 | 11.90 | 30 | instock | 6.27 | -0.738957 | 107.10 | 0.070 | 39.0 | 0.260870 | 357.00 | 9.52 | 34.138655 |
| 673 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4198 | 1 | 5.80 | 0 | outofstock | 2.97 | -0.959812 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 4.64 | 35.991379 |
| 674 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5930 | 1 | 14.10 | 0 | outofstock | 6.92 | -0.659305 | 197.40 | 0.129 | 14.0 | 2.000000 | 0.00 | 11.28 | 38.652482 |
| 675 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4686 | 1 | 14.00 | 23 | instock | 7.31 | -0.662925 | 98.00 | 0.064 | 30.0 | 0.264151 | 322.00 | 11.20 | 34.732143 |
| 676 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5962 | 1 | 30.00 | 8 | instock | 15.50 | -0.083635 | 150.00 | 0.098 | 13.0 | 0.476190 | 240.00 | 24.00 | 35.416667 |
| 677 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5446 | 1 | 16.20 | 28 | instock | 8.29 | -0.583273 | 145.80 | 0.095 | 37.0 | 0.276923 | 453.60 | 12.96 | 36.033951 |
| 678 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4281 | 1 | 11.60 | 30 | instock | 5.69 | -0.749819 | 139.20 | 0.091 | 42.0 | 0.333333 | 348.00 | 9.28 | 38.685345 |
| 679 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4858 | 1 | 6.50 | 0 | outofstock | 3.19 | -0.934468 | 32.50 | 0.021 | 5.0 | 2.000000 | 0.00 | 5.20 | 38.653846 |
| 680 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4068 | 1 | 16.60 | 25 | instock | 8.92 | -0.568791 | 199.20 | 0.130 | 37.0 | 0.387097 | 415.00 | 13.28 | 32.831325 |
| 681 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4050 | 1 | 21.80 | 42 | instock | 11.26 | -0.380521 | 261.60 | 0.171 | 54.0 | 0.250000 | 915.60 | 17.44 | 35.435780 |
| 682 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4085 | 1 | 19.00 | 27 | instock | 9.82 | -0.481897 | 152.00 | 0.099 | 35.0 | 0.258065 | 513.00 | 15.20 | 35.394737 |
| 683 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5951 | 1 | 74.50 | 4 | instock | 39.65 | 1.527516 | 149.00 | 0.097 | 6.0 | 0.400000 | 298.00 | 59.60 | 33.473154 |
| 684 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4225 | 1 | 16.90 | 27 | instock | 9.08 | -0.557929 | 219.70 | 0.143 | 40.0 | 0.388060 | 456.30 | 13.52 | 32.840237 |
| 685 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4060 | 1 | 11.90 | 29 | instock | 6.33 | -0.738957 | 154.70 | 0.101 | 42.0 | 0.366197 | 345.10 | 9.52 | 33.508403 |
| 686 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4298 | 1 | 23.20 | 17 | instock | 11.99 | -0.329833 | 139.20 | 0.091 | 23.0 | 0.300000 | 394.40 | 18.56 | 35.398707 |
| 687 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4105 | 1 | 6.80 | 45 | instock | 3.51 | -0.923606 | 108.80 | 0.071 | 61.0 | 0.301887 | 306.00 | 5.44 | 35.477941 |
| 688 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4103 | 1 | 16.30 | 30 | instock | 8.00 | -0.579652 | 195.60 | 0.128 | 42.0 | 0.333333 | 489.00 | 13.04 | 38.650307 |
| 689 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4720 | 1 | 15.90 | 31 | instock | 8.46 | -0.594135 | 206.70 | 0.135 | 44.0 | 0.346667 | 492.90 | 12.72 | 33.490566 |
| 690 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4964 | 1 | 12.10 | 23 | instock | 6.50 | -0.731716 | 121.00 | 0.079 | 33.0 | 0.357143 | 278.30 | 9.68 | 32.851240 |
| 691 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4647 | 1 | 28.50 | 45 | instock | 14.14 | -0.137944 | 627.00 | 0.409 | 67.0 | 0.392857 | 1282.50 | 22.80 | 37.982456 |
| 692 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4719 | 1 | 12.50 | 23 | instock | 6.46 | -0.717234 | 137.50 | 0.090 | 34.0 | 0.385965 | 287.50 | 10.00 | 35.400000 |
| 693 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4193 | 1 | 13.50 | 34 | instock | 6.91 | -0.681028 | 175.50 | 0.114 | 47.0 | 0.320988 | 459.00 | 10.80 | 36.018519 |
| 694 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4267 | 1 | 19.00 | 26 | instock | 9.33 | -0.481897 | 228.00 | 0.149 | 38.0 | 0.375000 | 494.00 | 15.20 | 38.618421 |
| 695 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5894 | 1 | 15.40 | 29 | instock | 7.56 | -0.612238 | 154.00 | 0.100 | 39.0 | 0.294118 | 446.60 | 12.32 | 38.636364 |
| 696 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4727 | 1 | 26.00 | 15 | instock | 12.90 | -0.228458 | 130.00 | 0.085 | 20.0 | 0.285714 | 390.00 | 20.80 | 37.980769 |
| 697 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4301 | 1 | 17.50 | 19 | instock | 9.49 | -0.536206 | 122.50 | 0.080 | 26.0 | 0.311111 | 332.50 | 14.00 | 32.214286 |
| 698 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4181 | 1 | 11.90 | 43 | instock | 6.21 | -0.738957 | 154.70 | 0.101 | 56.0 | 0.262626 | 511.70 | 9.52 | 34.768908 |
| 699 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4782 | 1 | 9.80 | 19 | instock | 5.01 | -0.814989 | 88.20 | 0.058 | 28.0 | 0.382979 | 186.20 | 7.84 | 36.096939 |
| 700 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6205 | 1 | 20.20 | 38 | instock | 10.54 | -0.438450 | 222.20 | 0.145 | 49.0 | 0.252874 | 767.60 | 16.16 | 34.777228 |
| 701 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4239 | 1 | 28.00 | 27 | instock | 14.76 | -0.156046 | 280.00 | 0.183 | 37.0 | 0.312500 | 756.00 | 22.40 | 34.107143 |
| 702 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4299 | 1 | 39.10 | 10 | instock | 19.19 | 0.245836 | 312.80 | 0.204 | 18.0 | 0.571429 | 391.00 | 31.28 | 38.650895 |
| 703 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6206 | 1 | 25.20 | 16 | instock | 13.15 | -0.257422 | 201.60 | 0.131 | 24.0 | 0.400000 | 403.20 | 20.16 | 34.771825 |
| 704 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4223 | 1 | 9.70 | 42 | instock | 4.81 | -0.818610 | 145.50 | 0.095 | 57.0 | 0.303030 | 407.40 | 7.76 | 38.015464 |
| 705 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4965 | 1 | 7.10 | 24 | instock | 3.67 | -0.912744 | 63.90 | 0.042 | 33.0 | 0.315789 | 170.40 | 5.68 | 35.387324 |
| 706 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4032 | 1 | 14.10 | 26 | instock | 6.92 | -0.659305 | 169.20 | 0.110 | 38.0 | 0.375000 | 366.60 | 11.28 | 38.652482 |
| 707 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4039 | 1 | 46.00 | 3 | outofstock | 23.77 | 0.495655 | 138.00 | 0.090 | 6.0 | 0.666667 | 138.00 | 36.80 | 35.407609 |
| 708 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4054 | 1 | 71.60 | 6 | instock | 38.47 | 1.422520 | 214.80 | 0.140 | 9.0 | 0.400000 | 429.60 | 57.28 | 32.838687 |
| 709 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5561 | 1 | 58.00 | 8 | instock | 30.27 | 0.930123 | 348.00 | 0.227 | 14.0 | 0.545455 | 464.00 | 46.40 | 34.762931 |
| 710 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5563 | 1 | 58.00 | 16 | instock | 29.07 | 0.930123 | 464.00 | 0.303 | 24.0 | 0.400000 | 928.00 | 46.40 | 37.349138 |
| 711 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5565 | 1 | 92.00 | 0 | outofstock | 46.11 | 2.161115 | 92.00 | 0.060 | 1.0 | 2.000000 | 0.00 | 73.60 | 37.350543 |
#affichage de la ligne avec un taux de marge inférieur à 0
tdm_inf = df_merge.loc[df_merge['taux_de_marge'] < 0]
tdm_inf.head()
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | stock_debut_mois | rotation_stock | valorisation_stock_euros | prix_ht | taux_de_marge | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 79 | 12589 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-02 10:46:10 | 2018-03-02 09:46:10 | Champagne | Champagne Egly-Ouriet Grand Cru Blanc de Noirs | Le Blanc de Noirs représente le meilleur du sa... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-blanc-de-... | 2020-08-13 10:15:02 | 2020-08-13 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4355 | 1 | 12.65 | 97 | instock | 77.48 | -0.711803 | 0.0 | 0.0 | 97.0 | 0.0 | 1227.05 | 10.12 | -665.612648 |
#création d'un dataframe avec les taux positifs
tdm_pos = df_merge.loc[df_merge['taux_de_marge'] > 0]
df_margin = pd.DataFrame(tdm_pos)
#Afficher le prix minimum de la colonne "taux_marge"
marge_min = round(df_margin['taux_de_marge'].min(), 2)
#Afficher le prix maximum de la colonne "taux_marge"
marge_max = round(df_margin['taux_de_marge'].max(), 2)
print(f"La marge la plus basse est de: {marge_min}%, la plus haute est de {marge_max}%")
La marge la plus basse est de: 19.56%, la plus haute est de 45.58%
#création d'un dataframe avec le taux de marge moyen par type de produit
mmpp = df_margin.groupby('product_type')['taux_de_marge'].mean()
taux_de_marge_moyen = df_margin['taux_de_marge'].mean()
marge_moyenne_par_produit = pd.DataFrame(mmpp).reset_index()
marge_moyenne_par_produit.head()
mmpp_sorted = marge_moyenne_par_produit.sort_values(by='taux_de_marge', ascending=True)
#Affichage dans un graphique du taux de marge par type de produit
fig = px.bar(
mmpp_sorted.head(20),
x='taux_de_marge',
y='product_type',
title="Top des types de produits par taux de marge",
labels={'product_type': 'Type de produit', 'taux_de_marge': 'Taux de marge (%)'},
text_auto=True
)
fig.update_traces(width=0.8)
fig.update_layout(
width=750,
height=400,
xaxis_tickangle=-45,
yaxis={'categoryorder': 'total ascending'}
)
fig.show()
print(taux_de_marge_moyen)
35.23027573298709
import seaborn as sns
df_histogramme = pd.DataFrame(df_merge['post_name']).reset_index()
df_histogramme['total_sales'] = df_merge['total_sales']
df_histogramme['ca_par_article'] = df_merge['ca_par_article'] / 10
df_histogramme['taux_de_marge'] = df_merge['taux_de_marge']
df_histogramme_sorted = df_histogramme.sort_values(by='ca_par_article', ascending=False)
#Création d'un heatmap de correlation avec les variables stock, sales et price
correlation = df_margin[['total_sales', 'ca_par_article', 'stock_quantity', 'taux_de_marge']].corr()
mask = np.triu(np.ones_like(correlation, dtype=bool))
sns.heatmap(
correlation,
annot=True,
mask=mask
)
plt.title('correlation')
plt.show()
df_margin.head()
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | stock_debut_mois | rotation_stock | valorisation_stock_euros | prix_ht | taux_de_marge | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4729 | 1 | 8.6 | 26 | instock | 4.22 | -0.858436 | 86.0 | 0.056 | 36.0 | 0.322581 | 223.6 | 6.88 | 38.662791 |
| 1 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4634 | 1 | 41.0 | 11 | instock | 20.12 | 0.314627 | 246.0 | 0.160 | 17.0 | 0.428571 | 451.0 | 32.80 | 38.658537 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.0 | 123 | instock | 24.86 | 0.242216 | 312.0 | 0.203 | 131.0 | 0.062992 | 4797.0 | 31.20 | 20.320513 |
| 3 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5932 | 1 | 59.9 | 13 | instock | 27.18 | 0.998914 | 0.0 | 0.000 | 13.0 | 0.000000 | 778.7 | 47.92 | 43.280467 |
| 4 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5047 | 1 | 22.5 | 76 | instock | 13.78 | -0.355177 | 180.0 | 0.117 | 84.0 | 0.100000 | 1710.0 | 18.00 | 23.444444 |
############################
# Analyse des correlations #
############################
#Importation de Seaborn
#Création d'un heatmap de correlation avec les variables stock, sales et price
correlation = df_margin[['price', 'purchase_price', 'prix_ht', 'stock_quantity', 'total_sales', 'taux_de_marge']].corr()
mask = np.triu(np.ones_like(correlation, dtype=bool))
sns.heatmap(
correlation,
annot=True,
mask=mask
)
plt.title('correlation')
plt.show()
#on peut également créer un mask pour n'afficher qu'une demi heatmap
#Que peut-on conclure des correlations ?
#Le prix est directement corrélée au prix d'achat ainsi que le prix ht
#On voit aussi une corrélation négative entre le sotck et le taux de marge cela veut dire que moins on a de stock plus la marge est élevé
#Et une faible corrélation positive entre le stock et le nombre total de vente ce qui signifie que plus le stock est elevé plus l'on a de chance de vendre
#Cependant la corrélation est de seulement 0.3 car avoir du stock n'aide en rien la décision de l'acheteur
len(df_margin)
711
#Mettre le dataset df_merge sur un fichier Excel
df_margin.to_csv('Données_Bottleneck_octobre.csv', sep=';', encoding='utf-16', index=False)
#Cette étape peut-être utile pour partager le résultat du dataset obtenu pour le partager avec les équipes.
df_margin.head(len(df_margin))
| id_web | virtual | downloadable | rating_count | average_rating | total_sales | tax_status | post_author | post_date | post_date_gmt | product_type | post_title | post_excerpt | post_status | comment_status | ping_status | post_name | post_modified | post_modified_gmt | post_parent | guid | menu_order | post_type | post_mime_type | comment_count | product_id | onsale_web | price | stock_quantity | stock_status | purchase_price | z_score | ca_par_article | pourcentage_ca | stock_debut_mois | rotation_stock | valorisation_stock_euros | prix_ht | taux_de_marge | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 38 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 12:25:58 | 2018-04-18 10:25:58 | Vin | Emile Boeckel Crémant Brut Blanc de Blancs | Ce Crémant est vif et délicat, gourmand et cro... | publish | closed | closed | emile-boeckel-cremant-brut-blanc-de-blancs | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4729 | 1 | 8.60 | 26 | instock | 4.22 | -0.858436 | 86.00 | 0.056 | 36.0 | 0.322581 | 223.60 | 6.88 | 38.662791 |
| 1 | 41 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-14 12:01:43 | 2018-04-14 10:01:43 | Vin | Marcel Windholtz Eau de Vie de Marc de Gewurzt... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-marc-de-gewurztraminer | 2020-08-03 10:25:02 | 2020-08-03 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4634 | 1 | 41.00 | 11 | instock | 20.12 | 0.314627 | 246.00 | 0.160 | 17.0 | 0.428571 | 451.00 | 32.80 | 38.658537 |
| 2 | 304 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 12:57:44 | 2018-02-13 11:57:44 | Champagne | Champagne Gosset Grande Réserve | Le nez, ouvert et expressif, évoque les fruits... | publish | closed | closed | gosset-champagne-grande-reserve | 2020-08-27 11:25:02 | 2020-08-27 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4141 | 1 | 39.00 | 123 | instock | 24.86 | 0.242216 | 312.00 | 0.203 | 131.0 | 0.062992 | 4797.00 | 31.20 | 20.320513 |
| 3 | 523 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-06 15:25:58 | 2019-04-06 13:25:58 | Cognac | Cognac Normandin Mercier VFC | Issus des meilleurs crus de Grande et de Petit... | publish | closed | closed | cognac-normandin-mercier-vfc | 2020-08-12 16:45:03 | 2020-08-12 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5932 | 1 | 59.90 | 13 | instock | 27.18 | 0.998914 | 0.00 | 0.000 | 13.0 | 0.000000 | 778.70 | 47.92 | 43.280467 |
| 4 | 531 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-18 15:58:02 | 2018-07-18 13:58:02 | Champagne | Champagne Petit Lebrun & Fils Blanc de Bla... | Cuvée bien équilibrée à la fois vive et souple... | publish | closed | closed | champagne-petit-lebrun-fils-blanc-de-blancs-gr... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5047 | 1 | 22.50 | 76 | instock | 13.78 | -0.355177 | 180.00 | 0.117 | 84.0 | 0.100000 | 1710.00 | 18.00 | 23.444444 |
| 5 | 791 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:54:47 | 2018-04-14 09:54:47 | Vin | Marcel Windholtz Eau de Vie de Baie de Houx | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-baie-de-houx | 2020-04-21 14:00:04 | 2020-04-21 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4631 | 1 | 76.80 | 1 | instock | 38.49 | 1.610789 | 76.80 | 0.050 | 2.0 | 0.666667 | 76.80 | 61.44 | 37.353516 |
| 6 | 793 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-14 11:52:20 | 2018-04-14 09:52:20 | Vin | Marcel Windholtz Eau de Vie de Coing | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-coing | 2019-12-23 09:30:54 | 2019-12-23 08:30:54 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4630 | 1 | 62.40 | 1 | instock | 33.21 | 1.089428 | 62.40 | 0.041 | 2.0 | 0.666667 | 62.40 | 49.92 | 33.473558 |
| 7 | 798 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-14 12:05:09 | 2018-04-14 10:05:09 | Vin | Marcel Windholtz Eau de Vie de Kirsch d'Alsace... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-kirsch-dalsace-... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4635 | 1 | 62.40 | 12 | instock | 31.92 | 1.089428 | 499.20 | 0.326 | 20.0 | 0.500000 | 748.80 | 49.92 | 36.057692 |
| 8 | 802 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-14 11:48:19 | 2018-04-14 09:48:19 | Vin | Marcel Windholtz Eau de Vie de Marc de Muscat | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-marc-de-muscat | 2019-02-09 14:00:03 | 2019-02-09 13:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4628 | 1 | 39.60 | 8 | instock | 21.07 | 0.263939 | 198.00 | 0.129 | 13.0 | 0.476190 | 316.80 | 31.68 | 33.491162 |
| 9 | 804 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:59:32 | 2018-04-14 09:59:32 | Vin | Marcel Windholtz Eau de Vie de Mirabelle d'Als... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-mirabelle-dalsace-rese... | 2020-07-23 10:15:03 | 2020-07-23 08:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4633 | 1 | 52.40 | 5 | instock | 27.61 | 0.727371 | 157.20 | 0.103 | 8.0 | 0.461538 | 262.00 | 41.92 | 34.136450 |
| 10 | 805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:45:24 | 2018-04-14 09:45:24 | Vin | Marcel Windholtz Eau de Vie de Poire Williams ... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-poire-williams-... | 2020-08-15 09:00:14 | 2020-08-15 07:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4627 | 1 | 58.30 | 2 | instock | 28.62 | 0.940985 | 116.60 | 0.076 | 4.0 | 0.666667 | 116.60 | 46.64 | 38.636364 |
| 11 | 807 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-04-14 11:43:35 | 2018-04-14 09:43:35 | Vin | Marcel Windholtz Eau de Vie de Prunelle Sauvage | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau-copie | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4626 | 1 | 52.90 | 4 | instock | 27.88 | 0.745474 | 105.80 | 0.069 | 6.0 | 0.400000 | 211.60 | 42.32 | 34.120983 |
| 12 | 812 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-14 11:35:24 | 2018-04-14 09:35:24 | Vin | Marcel Windholtz Eau de Vie de Sureau | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-sureau | 2018-12-21 16:50:13 | 2018-12-21 15:50:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4625 | 1 | 52.40 | 4 | instock | 28.16 | 0.727371 | 157.20 | 0.103 | 7.0 | 0.545455 | 209.60 | 41.92 | 32.824427 |
| 13 | 1360 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:26:34 | 2018-02-13 12:26:34 | Champagne | Champagne Mailly Grand Cru Brut Réserve | Un oeil jaune d’or iridescent, un nez épanoui ... | publish | closed | closed | champagne-mailly-gc-brut-reserve | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4146 | 1 | 29.50 | 86 | instock | 17.55 | -0.101738 | 177.00 | 0.115 | 92.0 | 0.067416 | 2537.00 | 23.60 | 25.635593 |
| 14 | 1364 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-13 13:36:44 | 2018-02-13 12:36:44 | Champagne | Champagne Mailly Grand Cru Brut Rosé | Une somptueuse robe rose lumineuse habille cet... | publish | closed | closed | champagne-mailly-grand-cru-brut-rose | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4148 | 1 | 37.50 | 71 | instock | 21.88 | 0.187907 | 112.50 | 0.073 | 74.0 | 0.041379 | 2662.50 | 30.00 | 27.066667 |
| 15 | 1366 | 0 | 0 | 0 | 0.0 | 116.0 | taxable | 2.0 | 2018-02-13 13:45:31 | 2018-02-13 12:45:31 | Champagne | Champagne Mailly Grand Cru Intemporelle 2010 | A l’œil, la robe brillante séduit par sa belle... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-2010 | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4150 | 1 | 59.00 | 123 | instock | 35.45 | 0.966329 | 6844.00 | 4.463 | 239.0 | 0.640884 | 7257.00 | 47.20 | 24.894068 |
| 16 | 1662 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:17:25 | 2018-02-13 12:17:25 | Champagne | Champagne Gosset Grand Rosé | Le nez exprime sans détour la fraise, dans sa ... | publish | closed | closed | champagne-gosset-grand-rose | 2020-08-14 16:45:03 | 2020-08-14 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4144 | 1 | 49.00 | 91 | instock | 27.73 | 0.604272 | 196.00 | 0.128 | 95.0 | 0.043011 | 4459.00 | 39.20 | 29.260204 |
| 17 | 2179 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-14 11:56:12 | 2018-04-14 09:56:12 | Vin | Marcel Windholtz Eau de Vie de Quetsch d'Alsac... | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-quetsch-dalsace-reserv... | 2019-10-16 14:20:02 | 2019-10-16 12:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4632 | 1 | 50.00 | 9 | instock | 26.87 | 0.640478 | 350.00 | 0.228 | 16.0 | 0.560000 | 450.00 | 40.00 | 32.825000 |
| 18 | 2361 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 12:20:54 | 2018-04-14 10:20:54 | Vin | Marcel Windholtz Eau de Vie de Framboise d'Alsace | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-framboise-dalsace | 2020-08-15 09:00:13 | 2020-08-15 07:00:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4636 | 1 | 50.00 | 0 | outofstock | 25.58 | 0.640478 | 200.00 | 0.130 | 4.0 | 2.000000 | 0.00 | 40.00 | 36.050000 |
| 19 | 2534 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-14 11:50:29 | 2018-04-14 09:50:29 | Vin | Marcel Windholtz Eau de Vie de Fraise | Les eaux de vie naissent d'une subtile alchimi... | publish | closed | closed | marcel-windholtz-eau-de-vie-de-fraise | 2020-08-21 15:45:04 | 2020-08-21 13:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4629 | 1 | 52.40 | 7 | instock | 27.07 | 0.727371 | 209.60 | 0.137 | 11.0 | 0.444444 | 366.80 | 41.92 | 35.424618 |
| 20 | 3383 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-09-01 15:53:58 | 2018-09-01 13:53:58 | Vin | Nouvelle-Zélande Marlborough Kim Crawford Sauv... | Grâce à ses arômes de gazon fraîchement coupé,... | publish | closed | closed | nouvelle-zelande-marlborough-kim-crawford-sauv... | 2020-04-24 21:49:18 | 2020-04-24 19:49:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5383 | 1 | 19.50 | 10 | instock | 10.18 | -0.463794 | 58.50 | 0.038 | 13.0 | 0.260870 | 195.00 | 15.60 | 34.743590 |
| 21 | 3506 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:13:24 | 2018-03-22 10:13:24 | Cognac | Cognac Frapin VSOP | Ce VSOP à tout d'un grand cognac. Il a bénéfic... | publish | closed | closed | cognac-frapin-vsop | 2020-08-04 09:30:14 | 2020-08-04 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4401 | 1 | 62.50 | 5 | instock | 27.21 | 1.093049 | 187.50 | 0.122 | 8.0 | 0.461538 | 312.50 | 50.00 | 45.580000 |
| 22 | 3507 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:32:55 | 2018-03-22 10:32:55 | Cognac | Cognac Frapin Château de Fontpinot XO | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-fontpinot-xo | 2020-08-12 09:30:16 | 2020-08-12 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4404 | 1 | 108.50 | 17 | instock | 52.22 | 2.758508 | 434.00 | 0.283 | 21.0 | 0.210526 | 1844.50 | 86.80 | 39.838710 |
| 23 | 3509 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 11:49:53 | 2018-03-22 10:49:53 | Cognac | Cognac Frapin Cigar Blend | Ce cognac bénéficie d'un vieillissement plus l... | publish | closed | closed | cognac-frapin-cigar-blend | 2020-07-04 09:45:03 | 2020-07-04 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4407 | 1 | 104.00 | 14 | instock | 46.71 | 2.595583 | 520.00 | 0.339 | 19.0 | 0.303030 | 1456.00 | 83.20 | 43.858173 |
| 24 | 3510 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 11:21:05 | 2018-03-22 10:21:05 | Cognac | Cognac Frapin VIP XO | La cuvée VIP XO à été enrichie d’eaux-de-vie t... | publish | closed | closed | cognac-frapin-vip-xo | 2020-08-22 11:35:03 | 2020-08-22 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4402 | 1 | 176.00 | 11 | instock | 78.25 | 5.202390 | 528.00 | 0.344 | 14.0 | 0.240000 | 1936.00 | 140.80 | 44.424716 |
| 25 | 3568 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-19 14:48:15 | 2018-04-19 12:48:15 | Vin | Emile Boeckel Crémant Brut Rosé | Un crémant à base de pinot noir, vin pétillant... | publish | closed | closed | emile-boeckel-cremant-brut-rose | 2020-08-24 17:35:02 | 2020-08-24 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4795 | 1 | 12.00 | 32 | instock | 6.08 | -0.735337 | 156.00 | 0.102 | 45.0 | 0.337662 | 384.00 | 9.60 | 36.666667 |
| 26 | 4679 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-01 14:19:24 | 2018-03-01 13:19:24 | Champagne | Champagne Mailly Grand Cru Les Echansons 2007 | <blockquote>Ce vin s'habille d'une parure fest... | publish | closed | closed | champagne-mailly-grand-cru-les-echansons-2007 | 2020-07-08 17:35:03 | 2020-07-08 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4337 | 1 | 83.00 | 145 | instock | 48.90 | 1.835264 | 0.00 | 0.000 | 145.0 | 0.000000 | 12035.00 | 66.40 | 26.355422 |
| 27 | 5646 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:24:22 | 2018-04-18 18:24:22 | Vin | Domaine Muré Crémant d'Alsace Cuvée Prestige | Chapelet de mousse persistant autour du verre.... | publish | closed | closed | domaine-mure-cremant-dalsace-cuvee-prestige | 2020-08-22 10:05:03 | 2020-08-22 08:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4730 | 1 | 14.30 | 31 | instock | 7.24 | -0.652064 | 157.30 | 0.103 | 42.0 | 0.301370 | 443.30 | 11.44 | 36.713287 |
| 28 | 6616 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-20 15:10:17 | 2018-02-20 14:10:17 | Vin | Domaine Huet Vouvray Le Clos du Bourg Moelleux... | D’une robe claire et brillante, les larmes de ... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-moelleux... | 2020-07-25 10:55:03 | 2020-07-25 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4253 | 1 | 59.60 | 5 | instock | 30.18 | 0.988052 | 298.00 | 0.194 | 10.0 | 0.666667 | 298.00 | 47.68 | 36.703020 |
| 29 | 7032 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-26 10:27:08 | 2019-07-26 08:27:08 | Vin | Planeta Sicilia Passito di Noto 2016 | Obtenu à partir de Moscato Sicilien, la vendan... | publish | closed | closed | planeta-sicilia-passito-di-noto-2016 | 2020-06-27 14:25:03 | 2020-06-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6222 | 1 | 26.40 | 29 | instock | 13.23 | -0.213975 | 264.00 | 0.172 | 39.0 | 0.294118 | 765.60 | 21.12 | 37.357955 |
| 30 | 7033 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 13:44:44 | 2019-03-13 12:44:44 | Huile d'olive | Huile d'Olive Extra Vierge Planeta Selezione C... | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-olive-planeta-3l | 2020-08-27 14:55:02 | 2020-08-27 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5756 | 1 | 42.20 | 9 | instock | 25.85 | 0.358074 | 211.00 | 0.138 | 14.0 | 0.434783 | 379.80 | 33.76 | 23.430095 |
| 31 | 7086 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 13:41:05 | 2018-02-13 12:41:05 | Champagne | Champagne Mailly Grand Cru Intemporelle Rosé 2009 | Au regard, la robe d’un rose saumoné clair et ... | publish | closed | closed | champagne-mailly-grand-cru-intemporelle-rose-2009 | 2020-08-20 09:30:19 | 2020-08-20 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4149 | 1 | 69.00 | 101 | instock | 40.25 | 1.328385 | 345.00 | 0.225 | 106.0 | 0.048309 | 6969.00 | 55.20 | 27.083333 |
| 32 | 7818 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-01 14:02:44 | 2018-03-01 13:02:44 | Champagne | Champagne Gosset Grand Blanc de Blancs | La bulle fine et presente se dirige vers la su... | publish | closed | closed | champagne-gosset-grand-blanc-de-blanc | 2020-08-12 14:00:03 | 2020-08-12 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4334 | 1 | 49.00 | 142 | instock | 30.01 | 0.604272 | 343.00 | 0.224 | 149.0 | 0.048110 | 6958.00 | 39.20 | 23.443878 |
| 33 | 7819 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-03-22 11:42:48 | 2018-03-22 10:42:48 | Cognac | Cognac Frapin Château de Fontpinot 1989 20 Ans... | Eau-de-Vie distillée à partir de raisins de Gr... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-1989-20-ans | 2020-03-14 16:05:04 | 2020-03-14 15:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4406 | 1 | 157.00 | 12 | instock | 69.08 | 4.514482 | 628.00 | 0.410 | 16.0 | 0.285714 | 1884.00 | 125.60 | 45.000000 |
| 34 | 8193 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2020-03-04 13:54:12 | 2020-03-04 12:54:12 | Vin | Emile Boeckel Crémant Chardonnay Extra Brut 2016 | Ce Crémant est vif et délicat, se et racé. Tr... | publish | closed | closed | emile-boeckel-cremant-chardonnay-extra-brut-2016 | 2020-08-22 10:15:02 | 2020-08-22 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6738 | 1 | 15.40 | 42 | instock | 8.12 | -0.612238 | 184.80 | 0.121 | 54.0 | 0.250000 | 646.80 | 12.32 | 34.090909 |
| 35 | 8344 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 20:28:24 | 2018-04-18 18:28:24 | Vin | Domaine Muré Crémant d'Alsace Rosé | Un crémant élégant, ample et gras, dévoilant d... | publish | closed | closed | domaine-mure-cremant-dalsace-rose | 2020-08-11 22:02:21 | 2020-08-11 20:02:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4731 | 1 | 22.00 | 42 | instock | 11.03 | -0.373280 | 264.00 | 0.172 | 54.0 | 0.250000 | 924.00 | 17.60 | 37.329545 |
| 36 | 8365 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-01-29 15:38:48 | 2019-01-29 14:38:48 | Vin | Parés Baltà Cava Brut Nature | Un effervescent contemporain où le fruit et la... | publish | closed | closed | pares-balta-cava-brut-nature | 2020-08-27 17:15:03 | 2020-08-27 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5629 | 1 | 10.30 | 28 | instock | 5.06 | -0.796886 | 133.90 | 0.087 | 41.0 | 0.376812 | 288.40 | 8.24 | 38.592233 |
| 37 | 8463 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 11:25:35 | 2018-11-26 10:25:35 | Vin | Domaine Huet Vouvray Le Mont Moelleux Première... | Harmonie majestueuse dans ce vin d'exception, ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-premiere... | 2020-05-09 16:29:10 | 2020-05-09 14:29:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5574 | 1 | 59.60 | 2 | instock | 30.18 | 0.988052 | 119.20 | 0.078 | 4.0 | 0.666667 | 119.20 | 47.68 | 36.703020 |
| 38 | 9562 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 10:57:02 | 2018-03-02 09:57:02 | Champagne | Champagne Larmandier-Bernier Latitude | La cuvée Latitude est très équilibrée entre fr... | publish | closed | closed | champagne-larmandier-bernier-latitude | 2018-12-28 15:10:04 | 2018-12-28 14:10:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4357 | 1 | 39.00 | 115 | instock | 22.30 | 0.242216 | 195.00 | 0.127 | 120.0 | 0.042553 | 4485.00 | 31.20 | 28.525641 |
| 39 | 9636 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-03-22 10:44:57 | 2018-03-22 09:44:57 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | The Hive est un assemblage de malts du Speysid... | publish | closed | closed | whisky-wemyss-the-hive-12-ans | 2020-08-19 17:45:03 | 2020-08-19 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4396 | 1 | 62.00 | 0 | outofstock | 28.42 | 1.074946 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 49.60 | 42.701613 |
| 40 | 9937 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-17 12:55:13 | 2018-05-17 10:55:13 | Vin | Marcel Richaud Cairanne Rouge Les Estrambords ... | Un vin généreux, profond et intense. Les notes... | publish | closed | closed | marcel-richaud-cairanne-rouge-les-estrambords-... | 2019-06-26 09:32:25 | 2019-06-26 07:32:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4932 | 1 | 25.70 | 5 | instock | 12.75 | -0.239319 | 51.40 | 0.034 | 7.0 | 0.333333 | 128.50 | 20.56 | 37.986381 |
| 41 | 10014 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-04 15:45:23 | 2019-04-04 13:45:23 | Gin | Darnley's London Dry Gin Original | <span title="">Un gin léger, floral et aromati... | publish | closed | closed | darnleys-london-dry-gin-original | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5913 | 1 | 36.00 | 7 | instock | 17.16 | 0.133599 | 360.00 | 0.235 | 17.0 | 0.833333 | 252.00 | 28.80 | 40.416667 |
| 42 | 10459 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 15:58:19 | 2018-04-13 13:58:19 | Vin | Alphonse Mellot Sancerre Rouge Génération XIX ... | Robe d'un superbe rubis, dense et profond - As... | publish | closed | closed | alphonse-mellot-sancerre-rouge-generation-xix-... | 2020-08-24 14:05:02 | 2020-08-24 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4617 | 1 | 67.50 | 6 | instock | 35.57 | 1.274077 | 270.00 | 0.176 | 10.0 | 0.500000 | 405.00 | 54.00 | 34.129630 |
| 43 | 10775 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:28:52 | 2018-04-17 19:28:52 | Vin | Albert Mann Pinot Gris Vendanges Tardives Alte... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-pinot-gris-vendanges-tardives-alte... | 2018-12-22 10:30:02 | 2018-12-22 09:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4709 | 1 | 44.00 | 7 | instock | 22.05 | 0.423244 | 264.00 | 0.172 | 13.0 | 0.600000 | 308.00 | 35.20 | 37.357955 |
| 44 | 10814 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:12:40 | 2018-04-17 08:12:40 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2013 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2013 | 2020-08-05 14:35:02 | 2020-08-05 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4656 | 1 | 43.00 | 13 | instock | 22.88 | 0.387038 | 301.00 | 0.196 | 20.0 | 0.424242 | 559.00 | 34.40 | 33.488372 |
| 45 | 11049 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 16:07:49 | 2018-04-13 14:07:49 | Vin | Alphonse Mellot Sancerre Rouge En Grands Champ... | Superbe robe carmin profond. Un très grand ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-en-grands-champ... | 2020-01-31 09:30:02 | 2020-01-31 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4619 | 1 | 59.00 | 8 | instock | 32.01 | 0.966329 | 236.00 | 0.154 | 12.0 | 0.400000 | 472.00 | 47.20 | 32.182203 |
| 46 | 11225 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-06-06 16:47:38 | 2018-06-06 14:47:38 | Champagne | Champagne Larmandier-Bernier Terre de Vertus P... | C’est un vin à la robe pâle et aux reflets ver... | publish | closed | closed | champagne-larmandier-bernier-terre-de-vertus-p... | 2019-05-17 10:10:03 | 2019-05-17 08:10:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4970 | 1 | 49.50 | 100 | instock | 28.59 | 0.622375 | 297.00 | 0.194 | 106.0 | 0.058252 | 4950.00 | 39.60 | 27.803030 |
| 47 | 11258 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 14:02:06 | 2019-03-13 13:02:06 | Huile d'olive | Huile d'Olive Extra Vierge Planeta 50cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-50cl | 2020-08-19 10:55:02 | 2020-08-19 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5760 | 1 | 13.10 | 24 | instock | 8.43 | -0.695510 | 91.70 | 0.060 | 31.0 | 0.254545 | 314.40 | 10.48 | 19.561069 |
| 48 | 11277 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:22:01 | 2019-03-19 10:22:01 | Vin | Château Monbrison Margaux Bouquet de Monbrison... | Bouquet de Monbrison 2012, le second vin du Ch... | publish | closed | closed | margaux-bouquet-de-monbrison-2012 | 2020-08-14 17:45:02 | 2020-08-14 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5801 | 1 | 24.00 | 22 | instock | 12.90 | -0.300869 | 216.00 | 0.141 | 31.0 | 0.339623 | 528.00 | 19.20 | 32.812500 |
| 49 | 11467 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-22 10:12:29 | 2018-03-22 09:12:29 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Le whisky Wemyss Peat Chimney "La Cheminée à T... | publish | closed | closed | whisky-wemyss-peat-chimney | 2020-06-26 10:45:01 | 2020-06-26 08:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4391 | 1 | 49.50 | 7 | instock | 22.01 | 0.622375 | 247.50 | 0.161 | 12.0 | 0.526316 | 346.50 | 39.60 | 44.419192 |
| 50 | 11585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-12 10:03:27 | 2018-03-12 09:03:27 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hive | Le whisky Wemyss The Hive "La Ruche" est un as... | publish | closed | closed | whisky-wemyss-the-hive | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4364 | 1 | 49.50 | 4 | instock | 23.60 | 0.622375 | 148.50 | 0.097 | 7.0 | 0.545455 | 198.00 | 39.60 | 40.404040 |
| 51 | 11586 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:28:41 | 2018-03-22 09:28:41 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Le Spice King "Roi des Epices" révèle un nez d... | publish | closed | closed | whisky-wemyss-spice-king | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4392 | 1 | 49.50 | 3 | instock | 22.01 | 0.622375 | 148.50 | 0.097 | 6.0 | 0.666667 | 148.50 | 39.60 | 44.419192 |
| 52 | 11587 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:38:04 | 2018-03-22 09:38:04 | Whisky | Wemyss Malts Blended Scotch Whisky Lord Elcho | Un Whisky frais et vif. Le nez évoque une sala... | publish | closed | closed | whisky-lord-elcho | 2020-06-18 10:45:02 | 2020-06-18 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4395 | 1 | 27.50 | 9 | instock | 13.11 | -0.174149 | 192.50 | 0.126 | 16.0 | 0.560000 | 247.50 | 22.00 | 40.409091 |
| 53 | 11601 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-25 09:15:41 | 2019-07-25 07:15:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-04 11:35:02 | 2020-07-04 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6214 | 1 | 99.00 | 9 | instock | 49.62 | 2.414555 | 594.00 | 0.387 | 15.0 | 0.500000 | 891.00 | 79.20 | 37.348485 |
| 54 | 11602 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-17 10:52:41 | 2018-07-17 08:52:41 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-23 15:35:02 | 2020-06-23 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5008 | 1 | 105.00 | 12 | instock | 56.42 | 2.631789 | 735.00 | 0.479 | 19.0 | 0.451613 | 1260.00 | 84.00 | 32.833333 |
| 55 | 11641 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-13 13:08:44 | 2018-02-13 12:08:44 | Champagne | Champagne Gosset Grand Millésime 2006 | L'attaque est ample, gourmande avec une belle ... | publish | closed | closed | champagne-gosset-grand-millesime-2006 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4142 | 1 | 53.00 | 125 | instock | 32.15 | 0.749095 | 212.00 | 0.138 | 129.0 | 0.031496 | 6625.00 | 42.40 | 24.174528 |
| 56 | 11668 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 11:43:55 | 2018-02-13 10:43:55 | Vin | Zind-Humbrecht Pinot Gris Grand Cru Rangen De ... | Le nez dévoile déjà une belle intensité de fru... | publish | closed | closed | zind-humbrecht-pinot-gris-grand-cru-rangen-de-... | 2020-02-20 09:55:02 | 2020-02-20 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4132 | 1 | 88.40 | 7 | instock | 44.30 | 2.030775 | 442.00 | 0.288 | 12.0 | 0.526316 | 618.80 | 70.72 | 37.358597 |
| 57 | 11669 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-18 17:00:13 | 2019-04-18 15:00:13 | Vin | Zind-Humbrecht Gewurztraminer Clos Windsbuhl 2012 | Le nez est discret et éventuellement développe... | publish | closed | closed | zind-humbrecht-gewurztraminer-windsbuhl-2012 | 2020-01-17 09:30:02 | 2020-01-17 08:30:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5967 | 1 | 56.30 | 5 | instock | 30.54 | 0.868573 | 168.90 | 0.110 | 8.0 | 0.461538 | 281.50 | 45.04 | 32.193606 |
| 58 | 11736 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 13:19:51 | 2019-01-31 12:19:51 | Vin | Domaine de l'Ecu Muscadet Taurus 2012 | Robe blé tendre. Nez élégant sur des notes min... | publish | closed | closed | domaine-de-lecu-muscadet-taurus-2012 | 2020-06-23 15:25:02 | 2020-06-23 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5703 | 1 | 29.40 | 23 | instock | 15.95 | -0.105358 | 294.00 | 0.192 | 33.0 | 0.357143 | 676.20 | 23.52 | 32.185374 |
| 59 | 11847 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:15:23 | 2018-04-17 08:15:23 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2014 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2014 | 2020-03-27 09:30:03 | 2020-03-27 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4657 | 1 | 43.00 | 3 | instock | 21.55 | 0.387038 | 129.00 | 0.084 | 6.0 | 0.666667 | 129.00 | 34.40 | 37.354651 |
| 60 | 11849 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:52:48 | 2018-04-17 07:52:48 | Vin | Thierry Germain Saumur Blanc Terres 2014 | D’une belle Robe Jaune paille, limpide, ce vin... | publish | closed | closed | thierry-germain-saumur-blanc-terres-2014 | 2020-08-20 09:30:03 | 2020-08-20 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4651 | 1 | 49.00 | 7 | instock | 24.81 | 0.604272 | 343.00 | 0.224 | 14.0 | 0.666667 | 343.00 | 39.20 | 36.709184 |
| 61 | 11862 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 13:46:23 | 2018-02-12 12:46:23 | Vin | Gilles Robin Hermitage Rouge 2012 | Une robe rubis intense avec une très belle bri... | publish | closed | closed | gilles-robin-hermitage-2012 | 2019-01-31 12:12:56 | 2019-01-31 11:12:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4069 | 1 | 60.00 | 4 | instock | 30.07 | 1.002534 | 180.00 | 0.117 | 7.0 | 0.545455 | 240.00 | 48.00 | 37.354167 |
| 62 | 11933 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-26 17:57:25 | 2019-03-26 16:57:25 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cfe-2008 | 2020-06-20 09:55:02 | 2020-06-20 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5819 | 1 | 56.00 | 6 | instock | 28.07 | 0.857712 | 224.00 | 0.146 | 10.0 | 0.500000 | 336.00 | 44.80 | 37.343750 |
| 63 | 11996 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:05:56 | 2018-07-18 08:05:56 | Champagne | Champagne Agrapart & Fils Les 7 Crus Brut ... | La cuvée Les 7 Crus provient d'un assemblage d... | publish | closed | closed | champagne-agrapart-fils-les-7-crus-brut-blanc-... | 2020-01-04 10:43:04 | 2020-01-04 09:43:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5024 | 1 | 45.00 | 103 | instock | 27.04 | 0.459450 | 270.00 | 0.176 | 109.0 | 0.056604 | 4635.00 | 36.00 | 24.888889 |
| 64 | 11997 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 11:45:12 | 2018-07-18 09:45:12 | Champagne | Champagne Agrapart & Fils Terroirs Brut Bl... | Avec son petit dosage et son côté très "nature... | publish | closed | closed | champagne-agrapart-fils-terroirs-brut-blanc-de... | 2020-03-05 17:15:02 | 2020-03-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5027 | 1 | 62.10 | 79 | instock | 38.04 | 1.078566 | 372.60 | 0.243 | 85.0 | 0.073171 | 4905.90 | 49.68 | 23.429952 |
| 65 | 12045 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:17:41 | 2018-02-12 13:17:41 | Vin | Château de Vaudieu Châteauneuf-du-Pape Blanc 2015 | Plein et enrobé sur la jeunesse, il atteint sa... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-blanc-2015 | 2020-08-26 09:30:03 | 2020-08-26 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4072 | 1 | 32.00 | 8 | instock | 15.71 | -0.011224 | 160.00 | 0.104 | 13.0 | 0.476190 | 256.00 | 25.60 | 38.632812 |
| 66 | 12194 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-13 16:31:51 | 2018-09-13 14:31:51 | Vin | La Préceptorie Maury Blanc 2015 | <div class="pw-hidden-cp">Nez de caramel. En b... | publish | closed | closed | la-preceptorie-maury-blanc-2015 | 2020-06-16 14:35:02 | 2020-06-16 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5445 | 1 | 16.30 | 18 | instock | 8.00 | -0.579652 | 130.40 | 0.085 | 26.0 | 0.363636 | 293.40 | 13.04 | 38.650307 |
| 67 | 12203 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | Vin | Domaine Huet Vouvray Haut-Lieu Demi-Sec 2015 | <div class="degust">\n<div class="alignleft te... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-demi-sec-2015 | 2018-02-20 15:19:23 | 2018-02-20 14:19:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4254 | 1 | 26.90 | 20 | instock | 14.59 | -0.195873 | 242.10 | 0.158 | 29.0 | 0.367347 | 538.00 | 21.52 | 32.202602 |
| 68 | 12315 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-09-06 11:21:44 | 2018-09-06 09:21:44 | Vin | Chili Montsecano (Ostertag) Pinot Noir 2013 | Ce vin est le fruit de la collaboration entre ... | publish | closed | closed | chili-montsecano-ostertag-pinot-noir-2013 | 2020-05-02 14:25:02 | 2020-05-02 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5398 | 1 | 39.00 | 8 | instock | 21.16 | 0.242216 | 234.00 | 0.153 | 14.0 | 0.545455 | 312.00 | 31.20 | 32.179487 |
| 69 | 12339 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 14:23:41 | 2019-03-28 13:23:41 | Vin | Stéphane Tissot Arbois Blanc Les Bruyères 2015 | Vin pur et minéral aux arômes de fruits et d'é... | publish | closed | closed | stephane-tissot-arbois-bruyeres-2015 | 2020-07-08 17:55:02 | 2020-07-08 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5899 | 1 | 28.10 | 35 | instock | 14.37 | -0.152426 | 309.10 | 0.202 | 46.0 | 0.271605 | 983.50 | 22.48 | 36.076512 |
| 70 | 12365 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-29 15:53:05 | 2019-01-29 14:53:05 | Vin | Parés Baltà Penedès Electio 2013 | Une cuvée produite avec une très vieille vigne... | publish | closed | closed | pares-balta-penedes-electio-2013 | 2020-08-08 17:45:02 | 2020-08-08 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5630 | 1 | 28.00 | 23 | instock | 14.61 | -0.156046 | 280.00 | 0.183 | 33.0 | 0.357143 | 644.00 | 22.40 | 34.776786 |
| 71 | 12366 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-29 15:23:12 | 2019-01-29 14:23:12 | Vin | Parés Baltà Penedès Hisenda Miret 2013 | Un joli Garnatxa de Penedès qui surprend par s... | publish | closed | closed | pares-balta-penedes-hisenda-miret-2013 | 2020-07-10 15:55:02 | 2020-07-10 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5628 | 1 | 25.00 | 15 | instock | 12.79 | -0.264663 | 125.00 | 0.082 | 20.0 | 0.285714 | 375.00 | 20.00 | 36.050000 |
| 72 | 12476 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 15:32:29 | 2018-02-20 14:32:29 | Vin | Domaine Huet Vouvray Le Mont Moelleux 2015 | De la complexité, de l'énergie, avec de beaux ... | publish | closed | closed | domaine-huet-vouvray-le-mont-moelleux-2015 | 2020-01-11 09:00:03 | 2020-01-11 08:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4257 | 1 | 31.70 | 16 | instock | 17.20 | -0.022085 | 317.00 | 0.207 | 26.0 | 0.476190 | 507.20 | 25.36 | 32.176656 |
| 73 | 12494 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-09-06 10:34:05 | 2018-09-06 08:34:05 | Vin | Australie Harkham Wines Old Vines 2011 | Une syrah profonde, gourmande et très élégante... | publish | closed | closed | australie-harkham-wines-old-vines-2011 | 2020-04-24 21:48:49 | 2020-04-24 19:48:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5393 | 1 | 35.30 | 7 | instock | 18.06 | 0.108255 | 141.20 | 0.092 | 11.0 | 0.444444 | 247.10 | 28.24 | 36.048159 |
| 74 | 12496 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-06 11:17:24 | 2018-09-06 09:17:24 | Vin | Chili De Martino Viejas Tinajas Cinsault 2013 | Une robe vivante couleur grenat, un nez élégan... | publish | closed | closed | chili-de-martino-viejas-tinajas-cinsault-2013 | 2020-04-24 21:44:41 | 2020-04-24 19:44:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5397 | 1 | 24.00 | 24 | instock | 12.40 | -0.300869 | 192.00 | 0.125 | 32.0 | 0.285714 | 576.00 | 19.20 | 35.416667 |
| 75 | 12585 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-02 10:51:14 | 2018-03-02 09:51:14 | Champagne | Champagne Egly-Ouriet Premier Cru Les Vignes d... | La cuvée Les Vignes de Vrigny est atypique dan... | publish | closed | closed | champagne-egly-ouriet-premier-cru-vrigny | 2020-07-30 11:25:02 | 2020-07-30 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4356 | 1 | 51.60 | 81 | instock | 31.00 | 0.698407 | 154.80 | 0.101 | 84.0 | 0.036364 | 4179.60 | 41.28 | 24.903101 |
| 76 | 12586 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-03-02 09:22:39 | 2018-03-02 08:22:39 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Tradition | Un Champagne bien équilibré, dense, très éléga... | publish | closed | closed | champagne-egly-ouriet-tradition-grand-cru | 2020-08-12 14:00:02 | 2020-08-12 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4348 | 1 | 59.00 | 125 | instock | 34.76 | 0.966329 | 295.00 | 0.192 | 130.0 | 0.039216 | 7375.00 | 47.20 | 26.355932 |
| 77 | 12587 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-03-02 10:37:26 | 2018-03-02 09:37:26 | Champagne | Champagne Egly-Ouriet Grand Cru Brut Rosé | \n\nLe Rosé Grand Cru de la maison Egly-... | publish | closed | closed | champagne-egly-ouriet-grand-cru-brut-rose | 2020-08-22 11:45:02 | 2020-08-22 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4353 | 1 | 79.50 | 127 | instock | 45.91 | 1.708545 | 1113.00 | 0.726 | 141.0 | 0.104478 | 10096.50 | 63.60 | 27.814465 |
| 78 | 12588 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 10:00:02 | 2018-03-02 09:00:02 | Champagne | Champagne Egly-Ouriet Grand Cru Extra Brut V.P. | Le Grand Cru VP, pour Vieillissement Prolongé,... | publish | closed | closed | champagne-egly-ouriet-extra-brut-vp | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4350 | 1 | 79.50 | 145 | instock | 47.30 | 1.708545 | 556.50 | 0.363 | 152.0 | 0.047138 | 11527.50 | 63.60 | 25.628931 |
| 80 | 12599 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 10:46:59 | 2018-02-16 09:46:59 | Vin | Domaine de l'Ecu Muscadet Orthogneiss 2014 | Robe Or blanc, cristalline. Nez subtil et élég... | publish | closed | closed | domaine-de-lecu-muscadet-orthogneiss-2014 | 2020-06-06 09:00:03 | 2020-06-06 07:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4219 | 1 | 16.70 | 25 | instock | 8.97 | -0.565170 | 200.40 | 0.131 | 37.0 | 0.387097 | 417.50 | 13.36 | 32.859281 |
| 81 | 12639 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:48:30 | 2018-03-22 09:48:30 | Whisky | Wemyss Malts Blended Malt Scotch Whisky The Hi... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-the-hive-batch-strength | 2019-12-02 09:30:37 | 2019-12-02 08:30:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4397 | 1 | 59.00 | 5 | instock | 27.31 | 0.966329 | 177.00 | 0.115 | 8.0 | 0.461538 | 295.00 | 47.20 | 42.139831 |
| 82 | 12640 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-22 10:56:07 | 2018-03-22 09:56:07 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Spice ... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-spice-king-batch-strength | 2020-06-15 16:45:02 | 2020-06-15 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4399 | 1 | 59.00 | 10 | instock | 28.12 | 0.966329 | 354.00 | 0.231 | 16.0 | 0.461538 | 590.00 | 47.20 | 40.423729 |
| 83 | 12641 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 10:53:34 | 2018-03-22 09:53:34 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Peat C... | Ce Blended Malts en Batch Strength est très lé... | publish | closed | closed | whisky-wemyss-peat-chimney-batch-strength | 2019-12-23 09:30:05 | 2019-12-23 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4398 | 1 | 59.00 | 10 | instock | 28.39 | 0.966329 | 413.00 | 0.269 | 17.0 | 0.518519 | 590.00 | 47.20 | 39.851695 |
| 84 | 12657 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 15:13:54 | 2018-02-16 14:13:54 | Vin | Domaine de Bellivière Jasnières Les Rosiers 2015 | La minéralité dans le verre. Ce flacon, habill... | publish | closed | closed | belliviere-jasnieres-rosiers-2015 | 2020-06-19 17:55:02 | 2020-06-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4228 | 1 | 29.90 | 30 | instock | 16.07 | -0.087256 | 269.10 | 0.175 | 39.0 | 0.260870 | 897.00 | 23.92 | 32.817726 |
| 85 | 12771 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 14:41:18 | 2018-04-19 12:41:18 | Vin | Maurice Schoech Riesling Grand Cru Rangen de T... | Nez sur la pierre, des touches fumées, de la r... | publish | closed | closed | maurice-schoech-riesling-grand-cru-rangen-de-t... | 2018-06-23 17:20:02 | 2018-06-23 15:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4794 | 1 | 41.60 | 14 | instock | 22.14 | 0.336350 | 374.40 | 0.244 | 23.0 | 0.486486 | 582.40 | 33.28 | 33.473558 |
| 86 | 12790 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-07-25 09:30:16 | 2019-07-25 07:30:16 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2019-11-04 09:30:25 | 2019-11-04 08:30:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6215 | 1 | 115.00 | 14 | instock | 56.45 | 2.993845 | 460.00 | 0.300 | 18.0 | 0.250000 | 1610.00 | 92.00 | 38.641304 |
| 87 | 12791 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 10:36:03 | 2018-07-17 08:36:03 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-07-02 09:30:03 | 2020-07-02 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5007 | 1 | 105.00 | 15 | instock | 55.88 | 2.631789 | 315.00 | 0.205 | 18.0 | 0.181818 | 1575.00 | 84.00 | 33.476190 |
| 88 | 12857 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-04-12 17:56:13 | 2018-04-12 15:56:13 | Vin | Château de Meursault Puligny-Montrachet 1er Cr... | Il présente une grande fraîcheur minérale au n... | publish | closed | closed | chateau-de-puligny-montrachet-1cru-champ-canet... | 2020-02-06 16:35:02 | 2020-02-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4582 | 1 | 109.60 | 18 | instock | 53.80 | 2.798335 | 109.60 | 0.071 | 19.0 | 0.054054 | 1972.80 | 87.68 | 38.640511 |
| 89 | 12869 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-28 14:29:35 | 2019-03-28 13:29:35 | Vin | Stéphane Tissot Arbois D.D. 2016 | Un Vin coloré et éclatant. Le nez est fruité, ... | publish | closed | closed | stephane-tissot-arbois-dd-2016 | 2019-12-13 15:40:01 | 2019-12-13 14:40:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5900 | 1 | 18.25 | 21 | instock | 8.96 | -0.509051 | 127.75 | 0.083 | 28.0 | 0.285714 | 383.25 | 14.60 | 38.630137 |
| 90 | 12881 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 15:25:14 | 2019-03-28 14:25:14 | Vin | Domaine de Montbourgeau L'Etoile Vin Jaune 2009 | Aux arômes de noix, d'épices et de vanille, ce... | publish | closed | closed | montbourgeau-etoile-vin-jaune-2009 | 2019-12-30 10:30:01 | 2019-12-30 09:30:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5905 | 1 | 43.90 | 6 | instock | 22.23 | 0.419623 | 263.40 | 0.172 | 12.0 | 0.666667 | 263.40 | 35.12 | 36.702733 |
| 91 | 12882 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 17:08:38 | 2019-03-28 16:08:38 | Vin | Domaine de Montbourgeau Vin de Paille 2013 | Magnifique exemple de vin de paille que cet ad... | publish | closed | closed | domaine-de-montbourgeau-vin-de-paille-2013 | 2020-04-29 15:45:02 | 2020-04-29 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5907 | 1 | 17.70 | 14 | instock | 9.42 | -0.528965 | 106.20 | 0.069 | 20.0 | 0.352941 | 247.80 | 14.16 | 33.474576 |
| 92 | 12942 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-27 13:29:52 | 2018-02-27 12:29:52 | Vin | Domaine Sérol Vin Mousseux Rosé Turbullent Mét... | Rose vif. Arômes de raisins mûrs, de poire et ... | publish | closed | closed | domaine-serol-mousseux-turbullent | 2020-07-01 09:30:03 | 2020-07-01 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4274 | 1 | 12.90 | 0 | outofstock | 6.33 | -0.702752 | 103.20 | 0.067 | 8.0 | 2.000000 | 0.00 | 10.32 | 38.662791 |
| 93 | 13032 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 11:58:43 | 2018-02-15 10:58:43 | Vin | Château de La Liquière Faugères Tucade 2015 | En patois, une Tucade est une fantaisie, un co... | publish | closed | closed | chateau-de-liquiere-faugeres-tucade-2015 | 2020-07-10 14:00:03 | 2020-07-10 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4196 | 1 | 27.20 | 0 | outofstock | 14.05 | -0.185011 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 21.76 | 35.431985 |
| 94 | 13052 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 10:05:23 | 2018-05-15 08:05:23 | Vin | Domaine Des Croix Savigny-Lès-Beaune 1er Cru L... | Ce vin est sur la délicatesse et l'élégance. L... | publish | closed | closed | domaine-des-croix-savigny-les-beaune-1er-cru-l... | 2020-08-26 11:25:01 | 2020-08-26 09:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4902 | 1 | 46.00 | 15 | instock | 23.53 | 0.495655 | 368.00 | 0.240 | 23.0 | 0.421053 | 690.00 | 36.80 | 36.059783 |
| 95 | 13072 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 14:38:37 | 2018-02-12 13:38:37 | Vin | Plateau des Chênes Lirac 2016 | Nez s’ouvrant à l’aération sur des notes d’agr... | publish | closed | closed | plateau-des-chenes-lirac-blanc-2016 | 2020-06-24 17:15:01 | 2020-06-24 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4076 | 1 | 14.05 | 32 | instock | 6.90 | -0.661115 | 182.65 | 0.119 | 45.0 | 0.337662 | 449.60 | 11.24 | 38.612100 |
| 96 | 13073 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 12:39:20 | 2019-04-25 10:39:20 | Vin | Château de Vaudieu Châteauneuf-du-Pape Amiral ... | Quand le Grenache lance un vibrant hommage au ... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-amiral-... | 2020-06-30 17:15:02 | 2020-06-30 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6041 | 1 | 71.70 | 11 | instock | 36.30 | 1.426140 | 430.20 | 0.281 | 17.0 | 0.428571 | 788.70 | 57.36 | 36.715481 |
| 97 | 13074 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 14:25:28 | 2018-02-12 13:25:28 | Vin | Château de Vaudieu Châteauneuf-du-Pape L'Avenu... | "L'Avenue" est issue d’une parcelle de vieux g... | publish | closed | closed | chateau-de-vaudieu-chateauneuf-du-pape-lavenue... | 2019-12-09 10:40:03 | 2019-12-09 09:40:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4073 | 1 | 77.80 | 8 | instock | 40.60 | 1.646995 | 311.20 | 0.203 | 12.0 | 0.400000 | 622.40 | 62.24 | 34.768638 |
| 98 | 13078 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 14:55:54 | 2018-02-12 13:55:54 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | vieux-donjon-chateauneuf-2013 | 2019-02-20 09:30:16 | 2019-02-20 08:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4079 | 1 | 37.00 | 0 | outofstock | 19.50 | 0.169804 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 29.60 | 34.121622 |
| 99 | 13089 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 13:20:53 | 2018-02-27 12:20:53 | Vin | Domaine Sérol Côte Roannaise Rosé Cabochard 2016 | Rose pétale. Arômes de fruits rouges et d'agru... | publish | closed | closed | domaine-serol-cote-roannaise-cabochard-2016 | 2020-07-08 09:30:04 | 2020-07-08 07:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4272 | 1 | 9.20 | 26 | instock | 4.85 | -0.836713 | 119.60 | 0.078 | 39.0 | 0.400000 | 239.20 | 7.36 | 34.103261 |
| 100 | 13096 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:29:50 | 2018-04-19 11:29:50 | Vin | Maurice Schoech Crémant d'Alsace Brut Rosé Bul... | Une parcelle de Pinot Noir en coteaux granitiq... | publish | closed | closed | maurice-schoech-cremant-dalsace-brut-rose-bull... | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4780 | 1 | 13.70 | 32 | instock | 6.72 | -0.673787 | 137.00 | 0.089 | 42.0 | 0.270270 | 438.40 | 10.96 | 38.686131 |
| 101 | 13117 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-12 15:05:35 | 2018-02-12 14:05:35 | Vin | Le Vieux Donjon Châteauneuf-du-Pape 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | le-vieux-donjon-chateauneuf-du-pape-blanc-2016 | 2018-11-29 18:10:02 | 2018-11-29 17:10:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4081 | 1 | 39.00 | 6 | instock | 19.14 | 0.242216 | 156.00 | 0.102 | 10.0 | 0.500000 | 234.00 | 31.20 | 38.653846 |
| 102 | 13127 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 11:18:33 | 2018-02-12 10:18:33 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2012 | Nez gracieux, très élégant avec une touche flo... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2012 | 2020-08-24 18:25:02 | 2020-08-24 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4053 | 1 | 44.30 | 7 | instock | 22.20 | 0.434106 | 221.50 | 0.144 | 12.0 | 0.526316 | 310.10 | 35.44 | 37.358916 |
| 103 | 13172 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 15:29:50 | 2018-02-28 14:29:50 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé Q... | De part son assemblage, Quintessence est tout ... | publish | closed | closed | rimauresq-cotes-provence-quintessence-2015 | 2019-12-23 09:30:06 | 2019-12-23 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4303 | 1 | 30.00 | 15 | instock | 15.19 | -0.083635 | 300.00 | 0.196 | 25.0 | 0.500000 | 450.00 | 24.00 | 36.708333 |
| 104 | 13209 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:49:42 | 2018-02-13 10:49:42 | Vin | Zind-Humbrecht Muscat Grand Cru Goldert 2015 | Le nez est impressionnant et déjà très express... | publish | closed | closed | zind-humbrecht-muscat-gc-goldert-2015 | 2019-10-04 09:30:07 | 2019-10-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4137 | 1 | 29.80 | 18 | instock | 15.86 | -0.090876 | 208.60 | 0.136 | 25.0 | 0.325581 | 536.40 | 23.84 | 33.473154 |
| 105 | 13211 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-18 17:36:03 | 2019-04-18 15:36:03 | Vin | Zind-Humbrecht Riesling Clos Windsbuhl 2014 | Le nez dévoile des arômes complexes, encore un... | publish | closed | closed | zind-humbrecht-riesling-clos-windsbuhl-2014 | 2019-10-16 17:50:03 | 2019-10-16 15:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5969 | 1 | 69.00 | 10 | instock | 37.43 | 1.328385 | 414.00 | 0.270 | 16.0 | 0.461538 | 690.00 | 55.20 | 32.192029 |
| 106 | 13215 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 17:05:30 | 2019-04-18 15:05:30 | Vin | Zind-Humbrecht Pinot Gris Clos Windsbuhl 2013 | Le nez est très riche et intense, développant ... | publish | closed | closed | zind-humbrecht-pinot-gris-windsbuhl-2013 | 2019-09-05 10:50:02 | 2019-09-05 08:50:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5968 | 1 | 71.50 | 9 | instock | 35.83 | 1.418899 | 357.50 | 0.233 | 14.0 | 0.434783 | 643.50 | 57.20 | 37.360140 |
| 107 | 13217 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:58:08 | 2018-02-13 10:58:08 | Vin | Zind-Humbrecht Gewurztraminer Grand Cru Rangen... | Le nez, bien qu’étant encore fermé, exprime to... | publish | closed | closed | zind-humbrecht-gewurzt-grand-cru-rangen-de-tha... | 2019-07-08 09:30:39 | 2019-07-08 07:30:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4139 | 1 | 77.40 | 1 | instock | 39.59 | 1.632513 | 77.40 | 0.050 | 2.0 | 0.666667 | 77.40 | 61.92 | 36.062661 |
| 108 | 13230 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-22 11:40:06 | 2018-03-22 10:40:06 | Cognac | Cognac Frapin Château de Fontpinot XO 1/2 | Exclusivement vendangé, distillé, vieilli et m... | publish | closed | closed | cognac-frapin-chateau-de-fontpinot-xo-1-2 | 2019-12-30 09:30:07 | 2019-12-30 08:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4405 | 1 | 68.10 | 15 | instock | 32.46 | 1.295800 | 476.70 | 0.311 | 22.0 | 0.378378 | 1021.50 | 54.48 | 40.418502 |
| 109 | 13291 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-19 10:30:57 | 2019-03-19 09:30:57 | Vin | Château de Chantegrive Graves Blanc Caroline 2016 | Ce vin possède une belle robe dorée ainsi qu'u... | publish | closed | closed | chateau-de-chantegrive-caroline-blanc-2016 | 2020-07-29 09:41:02 | 2020-07-29 07:41:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5795 | 1 | 23.00 | 16 | instock | 11.29 | -0.337075 | 138.00 | 0.090 | 22.0 | 0.315789 | 368.00 | 18.40 | 38.641304 |
| 110 | 13313 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:16:05 | 2018-06-07 15:16:05 | Vin | Château Dutruch Grand Poujeaux Moulis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-dutruch-grand-poujeaux-moulis-2016 | 2020-07-18 09:00:04 | 2020-07-18 07:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4978 | 1 | 18.50 | 23 | instock | 9.46 | -0.500000 | 148.00 | 0.097 | 31.0 | 0.296296 | 425.50 | 14.80 | 36.081081 |
| 111 | 13379 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 13:36:16 | 2018-05-17 11:36:16 | Vin | Domaine Rouge Garance Côtes du Rhône Villages ... | Un vin de fruits rouges intenses qui laissent ... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-villages-... | 2019-12-11 09:30:03 | 2019-12-11 08:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4938 | 1 | 12.50 | 32 | instock | 6.46 | -0.717234 | 162.50 | 0.106 | 45.0 | 0.337662 | 400.00 | 10.00 | 35.400000 |
| 112 | 13412 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:03:27 | 2018-04-18 19:03:27 | Vin | Jean-Paul Brun Beaujolais L'Ancien 2016 | L'Ancien est une cuvée vinifiée selon la métho... | publish | closed | closed | jean-paul-brun-beaujolais-lancien-2016 | 2020-07-10 09:30:03 | 2020-07-10 07:30:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4740 | 1 | 9.70 | 31 | instock | 5.21 | -0.818610 | 87.30 | 0.057 | 40.0 | 0.253521 | 300.70 | 7.76 | 32.860825 |
| 113 | 13416 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 10:04:03 | 2018-02-13 09:04:03 | Vin | Emile Boeckel Gewurztraminer Grand Cru Zotzenb... | Moelleux et corsé, riches arômes de fruits et ... | publish | closed | closed | boeckel-gewurzt-gc-zotzenberg-2016 | 2020-08-25 09:55:02 | 2020-08-25 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4100 | 1 | 15.80 | 0 | outofstock | 8.57 | -0.597755 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 12.64 | 32.199367 |
| 114 | 13435 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-12 14:52:10 | 2018-02-12 13:52:10 | Vin | Domaine des Bosquets Gigondas La Colline 2015 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-des-bosquets-gigondas-colline-2015 | 2020-07-11 15:05:02 | 2020-07-11 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4078 | 1 | 44.00 | 8 | instock | 22.28 | 0.423244 | 220.00 | 0.143 | 13.0 | 0.476190 | 352.00 | 35.20 | 36.704545 |
| 115 | 13453 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:24:37 | 2018-02-14 14:24:37 | Vin | Parés Baltà Penedès Mas Petit 2015 | Au nez, on y retrouve des arôme de fruits rou... | publish | closed | closed | pares-balta-penedes-mas-petit-2015 | 2020-08-08 10:45:02 | 2020-08-08 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4164 | 1 | 7.60 | 28 | instock | 4.04 | -0.894642 | 76.00 | 0.050 | 38.0 | 0.303030 | 212.80 | 6.08 | 33.552632 |
| 116 | 13460 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:17:25 | 2018-02-27 12:17:25 | Vin | Domaine Sérol Côte Roannaise Perdrizière 2016 | Robe rouge grenat intense. Nez expressif de fr... | publish | closed | closed | domaine-serol-cote-roannaise-perdriziere-2016 | 2020-07-01 18:55:02 | 2020-07-01 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4271 | 1 | 16.60 | 23 | instock | 8.32 | -0.568791 | 166.00 | 0.108 | 33.0 | 0.357143 | 381.80 | 13.28 | 37.349398 |
| 117 | 13514 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:05:42 | 2018-04-17 08:05:42 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:21:21 | 2020-08-27 08:21:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4654 | 1 | 33.40 | 14 | instock | 17.43 | 0.039464 | 300.60 | 0.196 | 23.0 | 0.486486 | 467.60 | 26.72 | 34.767964 |
| 118 | 13515 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-17 10:01:46 | 2018-04-17 08:01:46 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2020-08-20 17:05:02 | 2020-08-20 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4653 | 1 | 36.20 | 8 | instock | 19.64 | 0.140840 | 289.60 | 0.189 | 16.0 | 0.666667 | 289.60 | 28.96 | 32.182320 |
| 119 | 13516 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 10:09:55 | 2018-04-17 08:09:55 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-03-27 09:30:04 | 2020-03-27 08:30:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4655 | 1 | 40.20 | 7 | instock | 20.35 | 0.285663 | 281.40 | 0.183 | 14.0 | 0.666667 | 281.40 | 32.16 | 36.722637 |
| 120 | 13517 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 10:16:09 | 2018-04-17 08:16:09 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2016 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2016 | 2019-04-25 09:30:30 | 2019-04-25 07:30:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4658 | 1 | 48.80 | 4 | instock | 25.97 | 0.597031 | 146.40 | 0.095 | 7.0 | 0.545455 | 195.20 | 39.04 | 33.478484 |
| 121 | 13520 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:21:02 | 2018-11-26 09:21:02 | Vin | Thierry Germain Saumur Blanc Clos Roman 2016 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-clos-romans-2016 | 2019-04-25 09:30:32 | 2019-04-25 07:30:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5552 | 1 | 57.70 | 5 | instock | 30.11 | 0.919261 | 173.10 | 0.113 | 8.0 | 0.461538 | 288.50 | 46.16 | 34.770364 |
| 122 | 13531 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-07-27 10:21:50 | 2018-07-27 08:21:50 | Vin | Domaine de Montgilet Anjou Rouge 2016 | Cet Anjou rouge est un vin gourmand et fruité.... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016-2 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5056 | 1 | 7.50 | 27 | instock | 3.95 | -0.898262 | 75.00 | 0.049 | 37.0 | 0.312500 | 202.50 | 6.00 | 34.166667 |
| 123 | 13557 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:13:47 | 2019-01-31 13:13:47 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Rouge... | Le nez est marqué par des notes de fruits roug... | publish | closed | closed | domaine-des-terres-docre-saint-pourcain-rouge-... | 2020-06-23 18:35:01 | 2020-06-23 16:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5707 | 1 | 10.80 | 0 | outofstock | 5.69 | -0.778783 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 8.64 | 34.143519 |
| 124 | 13567 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-19 15:34:53 | 2019-03-19 14:34:53 | Vin | Château La Croix Meunier Saint-Emilion Grand C... | <div class="image-millesime">\n<div class="des... | publish | closed | closed | la-croix-meunier-saint-emilion-grand-cru-2014 | 2020-08-01 10:35:02 | 2020-08-01 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5806 | 1 | 17.40 | 39 | instock | 8.99 | -0.539826 | 226.20 | 0.148 | 52.0 | 0.285714 | 678.60 | 13.92 | 35.416667 |
| 125 | 13572 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-19 11:33:39 | 2019-03-19 10:33:39 | Vin | Château Tour Haut-Caussan Médoc 2015 | Vous trouverez dans cette cuvée du Château Tou... | publish | closed | closed | tour-haut-caussan-medoc-2015 | 2020-08-26 16:55:02 | 2020-08-26 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5803 | 1 | 17.10 | 47 | instock | 9.19 | -0.550688 | 290.70 | 0.190 | 64.0 | 0.306306 | 803.70 | 13.68 | 32.821637 |
| 126 | 13599 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-03-01 14:12:39 | 2018-03-01 13:12:39 | Champagne | Champagne Mailly Grand Cru Blanc de Pinot Noir | Champagne en habit d’or profond et intense, il... | publish | closed | closed | champagne-mailly-grand-cru-blanc-de-pinot-noir | 2020-08-26 18:05:02 | 2020-08-26 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4336 | 1 | 35.50 | 73 | instock | 21.12 | 0.115496 | 213.00 | 0.139 | 79.0 | 0.078947 | 2591.50 | 28.40 | 25.633803 |
| 127 | 13604 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 16:31:16 | 2018-04-12 14:31:16 | Vin | Château de Meursault Beaune-Grèves Les Trois J... | Le nez intense et racé évoque des saveurs mûre... | publish | closed | closed | cdme-beaune-1ercru-greves-3-journaux-2015 | 2020-08-06 16:45:02 | 2020-08-06 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4573 | 1 | 67.20 | 12 | instock | 36.46 | 1.263215 | 537.60 | 0.351 | 20.0 | 0.500000 | 806.40 | 53.76 | 32.180060 |
| 128 | 13627 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:37:27 | 2018-04-18 19:37:27 | Vin | Domaine de Montgilet Anjou Rouge Les Yvonnais ... | Cette cuvée Les Yvonnais s'ouvre sur des arôme... | publish | closed | closed | domaine-de-montgilet-anjou-rouge-2016 | 2020-05-09 16:27:08 | 2020-05-09 14:27:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4750 | 1 | 16.40 | 24 | instock | 8.30 | -0.576032 | 180.40 | 0.118 | 35.0 | 0.372881 | 393.60 | 13.12 | 36.737805 |
| 129 | 13647 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 11:06:33 | 2018-04-17 09:06:33 | Vin | Vincent Carême Vouvray Moelleux 2015 | Le Moelleux est une récolte de raisins en surm... | publish | closed | closed | vincent-careme-vouvray-moelleux-2015 | 2020-03-27 09:30:05 | 2020-03-27 08:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4666 | 1 | 21.00 | 24 | instock | 11.18 | -0.409486 | 231.00 | 0.151 | 35.0 | 0.372881 | 504.00 | 16.80 | 33.452381 |
| 130 | 13659 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 17:12:30 | 2018-04-17 15:12:30 | Vin | Domaine Plageoles Vin de France Contre-Pied 2016 | La robe est grenat profond, translucide. Le ne... | publish | closed | closed | domaine-plageoles-vin-de-france-contre-pied-2016 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4690 | 1 | 12.80 | 23 | instock | 6.94 | -0.706372 | 140.80 | 0.092 | 34.0 | 0.385965 | 294.40 | 10.24 | 32.226562 |
| 131 | 13662 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-04-18 11:46:21 | 2019-04-18 09:46:21 | Vin | Domaine de l'Ancienne Cure Pécharmant L'Abbaye... | Un joli nez d'une belle complexité, accompagné... | publish | closed | closed | domaine-de-lancienne-cure-pecharmant-abbaye-2015 | 2020-06-15 11:05:02 | 2020-06-15 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5964 | 1 | 16.30 | 31 | instock | 8.51 | -0.579652 | 211.90 | 0.138 | 44.0 | 0.346667 | 505.30 | 13.04 | 34.739264 |
| 132 | 13736 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 17:05:09 | 2018-04-17 15:05:09 | Vin | Domaine Plageoles Côtes du Tarn Blanc Sec Ondenc | Un 100% Ondenc vinifié en sec qui présente au ... | publish | closed | closed | domaine-plageoles-cotes-du-tarn-blanc-sec-ondenc | 2020-07-21 17:15:01 | 2020-07-21 15:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4689 | 1 | 12.80 | 38 | instock | 6.68 | -0.706372 | 166.40 | 0.109 | 51.0 | 0.292135 | 486.40 | 10.24 | 34.765625 |
| 133 | 13754 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:45:11 | 2018-04-19 11:45:11 | Vin | Maurice Schoech Pinot Gris Vendanges Tardives ... | Vendangé en un seul passage, les raisins de Pi... | publish | closed | closed | maurice-schoech-pinot-gris-vendanges-tardives-... | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4783 | 1 | 29.50 | 16 | instock | 15.85 | -0.101738 | 236.00 | 0.154 | 24.0 | 0.400000 | 472.00 | 23.60 | 32.838983 |
| 134 | 13762 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:49:37 | 2018-04-17 13:49:37 | Vin | Domaine Rotier Gaillac Blanc Sec Renaissance 2015 | Ce vin présente dans sa jeunesse des senteurs ... | publish | closed | closed | domaine-rotier-gaillac-blanc-sec-renaissance-2015 | 2020-06-26 18:55:02 | 2020-06-26 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4675 | 1 | 10.70 | 31 | instock | 5.64 | -0.782404 | 96.30 | 0.063 | 40.0 | 0.253521 | 331.70 | 8.56 | 34.112150 |
| 135 | 13765 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-03-22 10:32:22 | 2018-03-22 09:32:22 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Vanill... | Nouveau Blended malt proposé par la maison Wem... | publish | closed | closed | whisky-wemyss-vanilla-burst | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4393 | 1 | 57.00 | 5 | instock | 26.13 | 0.893917 | 171.00 | 0.112 | 8.0 | 0.461538 | 285.00 | 45.60 | 42.697368 |
| 136 | 13766 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-03-22 10:35:08 | 2018-03-22 09:35:08 | Whisky | Wemyss Malts Blended Malt Scotch Whisky Treacl... | Vieilli en fût de Sherry, le Treacle Chest (li... | publish | closed | closed | whisky-wemyss-treacle-chest | 2020-07-20 09:30:05 | 2020-07-20 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4394 | 1 | 59.80 | 3 | instock | 27.96 | 0.995293 | 119.60 | 0.078 | 5.0 | 0.500000 | 179.40 | 47.84 | 41.555184 |
| 137 | 13809 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:11:59 | 2018-05-15 09:11:59 | Vin | Antoine-Marie Arena Vin de France Rouge San Gi... | Ce vin montre de la précision et de la justess... | publish | closed | closed | antoine-marie-arena-vin-de-france-rouge-san-gi... | 2020-04-23 22:54:55 | 2020-04-23 20:54:55 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4910 | 1 | 17.30 | 23 | instock | 8.76 | -0.543447 | 138.40 | 0.090 | 31.0 | 0.296296 | 397.90 | 13.84 | 36.705202 |
| 138 | 13814 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-15 11:44:19 | 2018-05-15 09:44:19 | Vin | Jean-Batiste Arena Muscat du Cap Corse 2015 | Un muscat subtil, sans aucune lourdeur, fin et... | publish | closed | closed | jean-batiste-arena-muscat-du-cap-corse-2015 | 2020-04-04 09:00:05 | 2020-04-04 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4913 | 1 | 28.00 | 23 | instock | 14.76 | -0.156046 | 224.00 | 0.146 | 31.0 | 0.296296 | 644.00 | 22.40 | 34.107143 |
| 139 | 13849 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 14:05:40 | 2019-03-13 13:05:40 | Huile d'olive | Huiles d'Olive Extra Vierge Planeta 3x 10cl | Récoltées entre le 15 octobre et le 30 novembr... | publish | closed | closed | huile-dolive-extra-vierge-planeta-3x-10cl | 2019-05-28 17:00:02 | 2019-05-28 15:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5761 | 1 | 19.50 | 125 | instock | 12.07 | -0.463794 | 195.00 | 0.127 | 135.0 | 0.076923 | 2437.50 | 15.60 | 22.628205 |
| 140 | 13853 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-03-02 11:11:48 | 2018-03-02 10:11:48 | Champagne | Champagne Larmandier-Bernier Grand Cru Les Che... | Belle maîtrise de ce millésime compliqué en Ch... | publish | closed | closed | champagne-larmandier-bernier-grand-cru-vieille... | 2019-12-23 09:30:11 | 2019-12-23 08:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4359 | 1 | 85.60 | 112 | instock | 51.93 | 1.929399 | 599.20 | 0.391 | 119.0 | 0.060606 | 9587.20 | 68.48 | 24.167640 |
| 141 | 13854 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-03-02 11:03:30 | 2018-03-02 10:03:30 | Champagne | Champagne Larmandier-Bernier Grand Cru Vieille... | Une très belle robe or jaune dore. Le nez est ... | publish | closed | closed | champagne-larmandier-bernier-vieilles-vignes-l... | 2020-01-04 11:07:14 | 2020-01-04 10:07:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4358 | 1 | 77.00 | 81 | instock | 47.16 | 1.618030 | 616.00 | 0.402 | 89.0 | 0.094118 | 6237.00 | 61.60 | 23.441558 |
| 142 | 13895 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-19 10:41:50 | 2019-03-19 09:41:50 | Vin | Château Saransot-Dupré Bordeaux Blanc 2016 | <span style="display: inline !important; float... | publish | closed | closed | chateau-saransot-dupre-bordeaux-blanc-2016 | 2020-04-25 21:11:40 | 2020-04-25 19:11:40 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5796 | 1 | 12.50 | 21 | instock | 6.20 | -0.717234 | 100.00 | 0.065 | 29.0 | 0.320000 | 262.50 | 10.00 | 38.000000 |
| 143 | 13904 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:07:35 | 2018-09-06 08:07:35 | Vin | Australie Maverick Breechens Blend 2012 | D'une couleur jaune-vert, le nez est fruité au... | publish | closed | closed | australie-maverick-breechens-blend-2012 | 2020-04-24 21:48:21 | 2020-04-24 19:48:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5389 | 1 | 16.10 | 23 | instock | 8.32 | -0.586894 | 144.90 | 0.094 | 32.0 | 0.327273 | 370.30 | 12.88 | 35.403727 |
| 144 | 13905 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 16:16:16 | 2018-02-16 15:16:16 | Vin | Maroc Graillot/Thaleb Tandem Syrah 2015 | <div class="m-product_description">\n<div id="... | publish | closed | closed | maroc-graillot-thaleb-tandem-syrah-2015 | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4235 | 1 | 17.10 | 41 | instock | 9.01 | -0.550688 | 222.30 | 0.145 | 54.0 | 0.273684 | 701.10 | 13.68 | 34.137427 |
| 145 | 13910 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 10:30:16 | 2019-03-28 09:30:16 | Vin | Gilbert Picq Chablis 1er Cru Vaucoupin 2016 | Un premier cru ample et volumineux, possédant ... | publish | closed | closed | gilbert-picq-chablis-1er-cru-vaucoupin-2016 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5893 | 1 | 26.60 | 13 | instock | 14.29 | -0.206734 | 133.00 | 0.087 | 18.0 | 0.322581 | 345.80 | 21.28 | 32.847744 |
| 146 | 13913 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-18 10:46:30 | 2018-07-18 08:46:30 | Champagne | Champagne Agrapart & Fils Minéral Extra Br... | Légèrement praliné au nez, nerveux, frais, inc... | publish | closed | closed | champagne-agrapart-fils-mineral-extra-brut-bla... | 2020-05-11 14:35:02 | 2020-05-11 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5026 | 1 | 86.80 | 101 | instock | 50.13 | 1.972846 | 781.20 | 0.509 | 110.0 | 0.085308 | 8766.80 | 69.44 | 27.808180 |
| 147 | 13914 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-18 10:39:43 | 2018-07-18 08:39:43 | Champagne | Champagne Agrapart & Fils L'Avizoise Extra... | Une cuvée surprenante, par son amer articulé a... | publish | closed | closed | champagne-agrapart-fils-lavizoise-grand-cru-20... | 2020-07-09 17:05:02 | 2020-07-09 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5025 | 1 | 112.00 | 136 | instock | 68.60 | 2.885228 | 672.00 | 0.438 | 142.0 | 0.043165 | 15232.00 | 89.60 | 23.437500 |
| 148 | 13957 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:16:51 | 2018-11-26 09:16:51 | Vin | Thierry Germain Saumur-Champigny Franc De Pied... | D’une belle couleur rouge rubis, la robe est b... | publish | closed | closed | thierry-germain-saumur-champigny-franc-de-pied... | 2019-04-24 20:44:49 | 2019-04-24 18:44:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5551 | 1 | 36.30 | 6 | instock | 17.82 | 0.144461 | 108.90 | 0.071 | 9.0 | 0.400000 | 217.80 | 29.04 | 38.636364 |
| 149 | 13958 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-11-26 10:16:49 | 2018-11-26 09:16:49 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-08-27 10:19:32 | 2020-08-27 08:19:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5550 | 1 | 34.30 | 8 | instock | 17.90 | 0.072049 | 137.20 | 0.089 | 12.0 | 0.400000 | 274.40 | 27.44 | 34.766764 |
| 150 | 13959 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 10:12:27 | 2018-11-26 09:12:27 | Vin | Thierry Germain Saumur-Champigny Terres Chaude... | La robe est d’une couleur rubis intense. Brill... | publish | closed | closed | thierry-germain-saumur-champigny-terres-chaude... | 2020-04-21 15:40:12 | 2020-04-21 13:40:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5547 | 1 | 24.60 | 16 | instock | 12.71 | -0.279146 | 123.00 | 0.080 | 21.0 | 0.270270 | 393.60 | 19.68 | 35.416667 |
| 151 | 13965 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-11-26 10:13:45 | 2018-11-26 09:13:45 | Vin | Thierry Germain Saumur-Champigny Outre Terre 2017 | La robe est rouge vif. Le nez est très floral,... | publish | closed | closed | thierry-germain-saumur-champigny-outre-terre-2017 | 2019-04-24 20:46:14 | 2019-04-24 18:46:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5548 | 1 | 48.80 | 5 | instock | 26.47 | 0.597031 | 146.40 | 0.095 | 8.0 | 0.461538 | 244.00 | 39.04 | 32.197746 |
| 152 | 13969 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:28:41 | 2018-11-26 09:28:41 | Vin | Thierry Germain Saumur-Champigny Clos de l'Ech... | Ce vin offre une robe d’un rouge vif et de bea... | publish | closed | closed | thierry-germain-saumur-champigny-clos-echelier... | 2019-04-25 09:30:49 | 2019-04-25 07:30:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5554 | 1 | 38.00 | 13 | instock | 19.83 | 0.206010 | 266.00 | 0.173 | 20.0 | 0.424242 | 494.00 | 30.40 | 34.769737 |
| 153 | 13982 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-11-26 15:19:55 | 2018-11-26 14:19:55 | Vin | Lucien Boillot Puligny-Montrachet 1er Cru Les ... | <span style="float: none; background-color: tr... | publish | closed | closed | lucien-boillot-puligny-montrachet-1er-cru-les-... | 2020-07-21 18:15:02 | 2020-07-21 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5580 | 1 | 83.70 | 4 | instock | 41.08 | 1.860608 | 167.40 | 0.109 | 6.0 | 0.400000 | 334.80 | 66.96 | 38.649940 |
| 154 | 13996 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-25 09:09:17 | 2019-07-25 07:09:17 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-16 09:30:16 | 2020-06-16 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6212 | 1 | 115.00 | 16 | instock | 59.42 | 2.993845 | 805.00 | 0.525 | 23.0 | 0.358974 | 1840.00 | 92.00 | 35.413043 |
| 155 | 14000 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:32:03 | 2018-04-13 11:32:03 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2019-10-07 09:30:10 | 2019-10-07 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4597 | 1 | 61.60 | 7 | instock | 33.42 | 1.060463 | 246.40 | 0.161 | 11.0 | 0.444444 | 431.20 | 49.28 | 32.183442 |
| 156 | 14089 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-06-08 09:33:48 | 2019-06-08 07:33:48 | Vin | Stéphane Tissot Arbois Blanc La Mailloche 2016 | Vin très typé marqué par la minéralité, les ép... | publish | closed | closed | stephane-tissot-arbois-blanc-la-mailloche-2016 | 2020-07-17 14:00:02 | 2020-07-17 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6101 | 1 | 36.90 | 4 | instock | 20.02 | 0.166184 | 110.70 | 0.072 | 7.0 | 0.545455 | 147.60 | 29.52 | 32.181572 |
| 157 | 14090 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:47:41 | 2019-06-08 07:47:41 | Vin | Stéphane Tissot Côtes du Jura Sursis 2017 | Ce chardonnay est en Sursis car les vignes con... | publish | closed | closed | stephane-tissot-cotes-du-jura-sursis-2017 | 2020-07-08 17:55:03 | 2020-07-08 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6105 | 1 | 34.80 | 5 | instock | 17.80 | 0.090152 | 139.20 | 0.091 | 9.0 | 0.571429 | 174.00 | 27.84 | 36.063218 |
| 158 | 14092 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 09:42:36 | 2019-06-08 07:42:36 | Vin | Stéphane Tissot Arbois Blanc Savagnin 2015 | Vin puissant marqué par la noix, les épices, l... | publish | closed | closed | stephane-tissot-arbois-blanc-savagnin-2015 | 2020-01-18 14:20:02 | 2020-01-18 13:20:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6104 | 1 | 33.20 | 7 | instock | 17.84 | 0.032223 | 132.80 | 0.087 | 11.0 | 0.444444 | 232.40 | 26.56 | 32.831325 |
| 159 | 14095 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 14:54:20 | 2019-03-28 13:54:20 | Vin | Stéphane Tissot Arbois Pinot Noir Sous La Tour... | Un vin épicé, légèrement fumé avec de belles n... | publish | closed | closed | stephane-tissot-arbois-pinot-noir-sous-la-tour... | 2020-05-23 11:15:02 | 2020-05-23 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5902 | 1 | 35.10 | 10 | instock | 18.14 | 0.101014 | 315.90 | 0.206 | 19.0 | 0.620690 | 351.00 | 28.08 | 35.398860 |
| 160 | 14099 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-28 14:59:48 | 2019-03-28 13:59:48 | Vin | Stéphane Tissot Arbois Trousseau Singulier 2017 | Très belle maturité du fruit, de belles notes ... | publish | closed | closed | stephane-tissot-arbois-trousseau-singulier-2017 | 2020-06-26 18:15:02 | 2020-06-26 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5903 | 1 | 27.30 | 15 | instock | 13.82 | -0.181390 | 136.50 | 0.089 | 20.0 | 0.285714 | 409.50 | 21.84 | 36.721612 |
| 161 | 14100 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-06-08 09:39:05 | 2019-06-08 07:39:05 | Vin | Stéphane Tissot Arbois Trousseau Amphore 2017 | Une légère aération révélera toute la pureté d... | publish | closed | closed | stephane-tissot-arbois-trousseau-amphore-2017 | 2020-01-09 09:30:06 | 2020-01-09 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6103 | 1 | 40.70 | 7 | instock | 21.87 | 0.303765 | 244.20 | 0.159 | 13.0 | 0.600000 | 284.90 | 32.56 | 32.831695 |
| 162 | 14101 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-08 09:55:58 | 2019-06-08 07:55:58 | Vin | Stéphane Tissot Arbois Vin Jaune En Spois 2011 | En Spois est un magnifique vin jaune du Jura q... | publish | closed | closed | stephane-tissot-arbois-vin-jaune-en-spois-2011 | 2020-03-13 15:25:02 | 2020-03-13 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6107 | 1 | 62.40 | 7 | instock | 31.27 | 1.089428 | 312.00 | 0.203 | 12.0 | 0.526316 | 436.80 | 49.92 | 37.359776 |
| 163 | 14106 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-06-08 09:54:21 | 2019-06-08 07:54:21 | Vin | Stéphane Tissot Château-Chalon 2011 | Ce vin peut-être dégusté sur sa jeunesse mais ... | publish | closed | closed | stephane-tissot-chateau-chalon-2011 | 2020-05-29 17:35:03 | 2020-05-29 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6106 | 1 | 74.80 | 3 | instock | 40.19 | 1.538378 | 149.60 | 0.098 | 5.0 | 0.500000 | 224.40 | 59.84 | 32.837567 |
| 164 | 14141 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-06 10:21:59 | 2018-09-06 08:21:59 | Vin | Australie Maverick Trial Hill Riesling 2010 | <span style="float: none; background-color: tr... | publish | closed | closed | australie-maverick-trial-hill-riesling-2010 | 2020-07-23 16:35:02 | 2020-07-23 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5391 | 1 | 24.20 | 34 | instock | 13.00 | -0.293628 | 290.40 | 0.189 | 46.0 | 0.300000 | 822.80 | 19.36 | 32.851240 |
| 165 | 14149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-09-01 15:58:23 | 2018-09-01 13:58:23 | Vin | Liban Vallée de la Békaa Château Marsyas 2012 | Le vin présente une robe sombre au reflet viol... | publish | closed | closed | liban-vallee-de-la-bekaa-chateau-marsyas-2012 | 2020-04-01 09:30:06 | 2020-04-01 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5384 | 1 | 28.80 | 0 | outofstock | 15.18 | -0.127082 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 23.04 | 34.114583 |
| 166 | 14184 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 21:44:46 | 2018-04-18 19:44:46 | Vin | Domaine de Montgilet Coteaux de l'Aubance Les ... | À la profondeur et à l'intensité de sa robe d'... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-les-t... | 2020-08-08 10:15:01 | 2020-08-08 08:15:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4752 | 1 | 27.90 | 23 | instock | 13.69 | -0.159667 | 195.30 | 0.127 | 30.0 | 0.264151 | 641.70 | 22.32 | 38.664875 |
| 167 | 14192 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-09 17:27:22 | 2018-10-09 15:27:22 | Vin | Château de la Selve Coteaux de l'Ardèche Rouge... | <div>\n\nRobe cerise foncée d’une brillance ex... | publish | closed | closed | chateau-de-la-selve-coteaux-de-lardeche-rouge-... | 2020-08-21 11:25:02 | 2020-08-21 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5506 | 1 | 18.20 | 24 | instock | 9.59 | -0.510862 | 200.20 | 0.131 | 35.0 | 0.372881 | 436.80 | 14.56 | 34.134615 |
| 168 | 14220 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-05-15 10:23:41 | 2018-05-15 08:23:41 | Vin | Domaine Des Croix Corton Charlemagne Grand Cru... | Ce Corton Charlemagne éblouit par son assise, ... | publish | closed | closed | domaine-des-croix-corton-charlemagne-grand-cru... | 2020-05-19 17:15:02 | 2020-05-19 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4904 | 1 | 137.00 | 9 | instock | 67.95 | 3.790369 | 411.00 | 0.268 | 12.0 | 0.285714 | 1233.00 | 109.60 | 38.001825 |
| 169 | 14241 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-01-31 14:57:35 | 2019-01-31 13:57:35 | Vin | Albert Mann Gewurztraminer Vendanges Tardives ... | Belle bouteille dotée d’une grande complexité ... | publish | closed | closed | albert-mann-gewurztraminer-vendanges-tardives-... | 2019-08-09 11:50:03 | 2019-08-09 09:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5712 | 1 | 57.60 | 0 | outofstock | 30.36 | 0.915641 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 46.08 | 34.114583 |
| 170 | 14253 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 15:29:32 | 2018-02-20 14:29:32 | Vin | Domaine Huet Vouvray Haut-Lieu Sec 2017 | <div class="degust">Le nez révèle des arômes c... | publish | closed | closed | domaine-huet-vouvray-haut-lieu-sec-2016 | 2020-07-22 09:55:01 | 2020-07-22 07:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4256 | 1 | 24.40 | 0 | outofstock | 12.61 | -0.286387 | 219.60 | 0.143 | 9.0 | 2.000000 | 0.00 | 19.52 | 35.399590 |
| 171 | 14265 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-04 15:56:05 | 2019-04-04 13:56:05 | Gin | Darnley's London Dry Gin Spiced | Un gin épicé contemporain, plein et rond. 10 p... | publish | closed | closed | darnleys-london-dry-gin-spiced | 2020-08-08 16:15:02 | 2020-08-08 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5914 | 1 | 36.00 | 4 | instock | 17.16 | 0.133599 | 144.00 | 0.094 | 8.0 | 0.666667 | 144.00 | 28.80 | 40.416667 |
| 172 | 14300 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-19 13:19:00 | 2018-04-19 11:19:00 | Vin | Clos du Mont-Olivet Vin de France La Sabonite | A forte dominante de Grenache la Sabonite est ... | publish | closed | closed | clos-du-mont-olivet-vin-de-france-la-sabonite | 2020-08-20 18:05:03 | 2020-08-20 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4779 | 1 | 7.80 | 36 | instock | 4.07 | -0.887400 | 85.80 | 0.056 | 47.0 | 0.265060 | 280.80 | 6.24 | 34.775641 |
| 173 | 14302 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:03:31 | 2018-04-19 11:03:31 | Vin | Château de La Liquière Pays d'Hérault Blanc A ... | Un vin plein d'éclat et de fraîcheur, aux note... | publish | closed | closed | chateau-de-la-liquiere-pays-dherault-blanc-a-m... | 2020-08-22 09:00:06 | 2020-08-22 07:00:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4776 | 1 | 6.80 | 42 | instock | 3.48 | -0.923606 | 81.60 | 0.053 | 54.0 | 0.250000 | 285.60 | 5.44 | 36.029412 |
| 174 | 14323 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 18:07:59 | 2019-02-15 17:07:59 | Vin | Domaine Clerget Vosne-Romanée Les Violettes 2015 | Un vin de très grande classe ! La proximité du... | publish | closed | closed | domaine-clerget-vosne-romanee-les-violettes-2015 | 2019-08-31 10:50:04 | 2019-08-31 08:50:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5743 | 1 | 57.00 | 7 | instock | 29.74 | 0.893917 | 228.00 | 0.149 | 11.0 | 0.444444 | 399.00 | 45.60 | 34.780702 |
| 175 | 14332 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 16:45:18 | 2018-02-14 15:45:18 | Vin | Le Hameau Des Ollieux Monsieur Pinot 2017 | Un vin gourmand, sur le fruit avec une très be... | publish | closed | closed | ollieux-romanis-monsieur-pinot-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4171 | 1 | 7.80 | 32 | instock | 4.15 | -0.887400 | 85.80 | 0.056 | 43.0 | 0.293333 | 249.60 | 6.24 | 33.493590 |
| 176 | 14338 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-03-15 10:13:30 | 2019-03-15 09:13:30 | Vin | Maurel Pays d'Oc Cabernet-Sauvignon 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | maurel-pays-d-oc-cabernet-sauvignon-2017 | 2020-03-11 09:30:06 | 2020-03-11 08:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5777 | 1 | 5.70 | 51 | instock | 3.03 | -0.963432 | 91.20 | 0.059 | 67.0 | 0.271186 | 290.70 | 4.56 | 33.552632 |
| 177 | 14366 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-18 21:00:55 | 2018-04-18 19:00:55 | Vin | Jean-Paul Brun Beaujolais Le Ronsay 2016 | Dans sa robe pourpre, signe d'une jeunesse fri... | publish | closed | closed | jean-paul-brun-beaujolais-le-ronsay-2016 | 2020-07-15 17:55:02 | 2020-07-15 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4739 | 1 | 7.40 | 30 | instock | 3.75 | -0.901883 | 66.60 | 0.043 | 39.0 | 0.260870 | 222.00 | 5.92 | 36.655405 |
| 178 | 14371 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 15:53:44 | 2018-04-13 13:53:44 | Vin | Alphonse Mellot Sancerre Rouge La Demoiselle 2015 | Robe rubis dense, le nez est marqué par le ter... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-demoiselle-2015 | 2020-08-24 14:05:03 | 2020-08-24 12:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4616 | 1 | 57.00 | 10 | instock | 27.98 | 0.893917 | 342.00 | 0.223 | 16.0 | 0.461538 | 570.00 | 45.60 | 38.640351 |
| 179 | 14372 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 16:03:28 | 2018-04-13 14:03:28 | Vin | Alphonse Mellot Sancerre Rouge La Moussière 2014 | Très belle robe carminé profond. Au nez, on re... | publish | closed | closed | alphonse-mellot-sancerre-rouge-la-moussiere-2014 | 2020-08-27 09:30:05 | 2020-08-27 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4618 | 1 | 30.60 | 0 | outofstock | 16.44 | -0.061912 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 24.48 | 32.843137 |
| 180 | 14374 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 10:40:56 | 2018-05-15 08:40:56 | Vin | Alphonse Mellot Coteaux Charitois Rouge Les Pé... | A l'oeil, la robe est limpide, rouge rubis. So... | publish | closed | closed | alphonse-mellot-coteaux-charitois-rouge-les-pe... | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4907 | 1 | 22.90 | 32 | instock | 12.42 | -0.340695 | 229.00 | 0.149 | 42.0 | 0.270270 | 732.80 | 18.32 | 32.205240 |
| 181 | 14395 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 10:45:05 | 2018-05-15 08:45:05 | Vin | Alphonse Mellot Sancerre Blanc Edmond 2016 | La cuvée Edmond est sans doute l'un des plus g... | publish | closed | closed | alphonse-mellot-sancerre-blanc-edmond-2016 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4908 | 1 | 53.20 | 7 | instock | 26.11 | 0.756336 | 266.00 | 0.173 | 12.0 | 0.526316 | 372.40 | 42.56 | 38.651316 |
| 182 | 14429 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:46:55 | 2019-03-19 15:46:55 | Vin | Château Tour De Pez Saint-Estèphe 2017 | <p class="first">Vignoble au parcellaire morce... | publish | closed | closed | chateau-tour-de-pez-saint-estephe-2017 | 2020-07-28 09:30:05 | 2020-07-28 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5810 | 1 | 24.00 | 27 | instock | 12.77 | -0.300869 | 264.00 | 0.172 | 38.0 | 0.338462 | 648.00 | 19.20 | 33.489583 |
| 183 | 14451 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 16:39:44 | 2018-04-17 14:39:44 | Vin | Château Plaisance Fronton To Co Que Cal 2015 | 2014 est un très joli millésime de fruit. La m... | publish | closed | closed | chateau-plaisance-fronton-to-co-que-cal-2015 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4684 | 1 | 18.10 | 28 | instock | 9.45 | -0.514482 | 181.00 | 0.118 | 38.0 | 0.303030 | 506.80 | 14.48 | 34.737569 |
| 184 | 14461 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-19 11:07:07 | 2019-03-19 10:07:07 | Vin | Château Carbonnieux Graves Blanc 2017 | Le Château Carbonnieux blanc est un vin de lég... | publish | closed | closed | chateau-carbonnieux-graves-blanc-2017 | 2020-07-02 18:15:02 | 2020-07-02 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5799 | 1 | 40.20 | 3 | instock | 19.94 | 0.285663 | 120.60 | 0.079 | 6.0 | 0.666667 | 120.60 | 32.16 | 37.997512 |
| 185 | 14469 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-09-13 16:51:09 | 2018-09-13 14:51:09 | Vin | Parcé Frères Côtes du Roussillon Villages Homm... | <div><span style="font-family: 'Helvetica Neue... | publish | closed | closed | parce-freres-cotes-du-roussillon-villages-homm... | 2020-08-27 10:19:56 | 2020-08-27 08:19:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5448 | 1 | 7.20 | 42 | instock | 3.76 | -0.909124 | 108.00 | 0.070 | 57.0 | 0.303030 | 302.40 | 5.76 | 34.722222 |
| 186 | 14474 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 14:53:20 | 2018-02-14 13:53:20 | Vin | Domino Romano Ribera Del Duero Camino Romano 2016 | Ce vin présente un nez plein de fruits, avec d... | publish | closed | closed | domino-romano-ribera-camino-2016 | 2020-06-27 15:25:01 | 2020-06-27 13:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4162 | 1 | 14.30 | 31 | instock | 7.02 | -0.652064 | 171.60 | 0.112 | 43.0 | 0.324324 | 443.30 | 11.44 | 38.636364 |
| 187 | 14485 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-20 15:52:12 | 2018-02-20 14:52:12 | Vin | Domaine Huet Vouvray Le Mont Sec 2017 | Un nez intense sur la minéral et les agrumes. ... | publish | closed | closed | domaine-huet-vouvray-le-mont-sec-2017 | 2020-08-21 12:15:10 | 2020-08-21 10:15:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4258 | 1 | 32.10 | 12 | instock | 17.25 | -0.007603 | 256.80 | 0.167 | 20.0 | 0.500000 | 385.20 | 25.68 | 32.827103 |
| 188 | 14506 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-19 14:56:05 | 2018-04-19 12:56:05 | Vin | Domaine Peyre Rose Clos des Cistes 2008 | Dominante de Syrah avec une pointe de Grenache... | publish | closed | closed | domaine-peyre-rose-clos-des-cistes-2008 | 2020-07-16 09:30:05 | 2020-07-16 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4797 | 1 | 78.00 | 5 | instock | 42.32 | 1.654236 | 390.00 | 0.254 | 10.0 | 0.666667 | 390.00 | 62.40 | 32.179487 |
| 189 | 14507 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-07-12 11:20:07 | 2018-07-12 09:20:07 | Vin | Domaine Peyre Rose Syrah Léone 2008 | Syrah Leone offre toujours beaucoup de charme.... | publish | closed | closed | domaine-peyre-rose-syrah-leone-2008 | 2020-08-22 17:45:01 | 2020-08-22 15:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4994 | 1 | 78.00 | 11 | instock | 40.70 | 1.654236 | 468.00 | 0.305 | 17.0 | 0.428571 | 858.00 | 62.40 | 34.775641 |
| 190 | 14508 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 14:05:47 | 2018-07-12 12:05:47 | Vin | Domaine Peyre Rose Marlène N°3 2008 | La cuvée Marlène N°3 se présente ici dans le q... | publish | closed | closed | domaine-peyre-rose-marlene-n3-2008 | 2020-07-17 11:35:02 | 2020-07-17 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4996 | 1 | 78.00 | 6 | instock | 40.70 | 1.654236 | 312.00 | 0.203 | 10.0 | 0.500000 | 468.00 | 62.40 | 34.775641 |
| 191 | 14509 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-12 11:22:04 | 2018-07-12 09:22:04 | Vin | Domaine Peyre Rose Oro Blanc 2002 | Unique dans son style, sans renier une pointe ... | publish | closed | closed | domaine-peyre-rose-oro-2002 | 2020-06-05 16:35:02 | 2020-06-05 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4995 | 1 | 78.00 | 6 | instock | 42.32 | 1.654236 | 312.00 | 0.203 | 10.0 | 0.500000 | 468.00 | 62.40 | 32.179487 |
| 192 | 14527 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 13:45:13 | 2018-02-27 12:45:13 | Vin | I Fabbri Chianti Classico Terra Di Lamole 2015 | Un nez complexe de fleurs et de fruits rouges ... | publish | closed | closed | i-fabbri-chianti-classico-terra-di-lamole-2015 | 2020-07-02 18:25:03 | 2020-07-02 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4276 | 1 | 17.60 | 17 | instock | 9.46 | -0.532585 | 123.20 | 0.080 | 24.0 | 0.341463 | 299.20 | 14.08 | 32.812500 |
| 193 | 14561 | 0 | 0 | 0 | 0.0 | 111.0 | taxable | 2.0 | 2018-09-01 15:34:55 | 2018-09-01 13:34:55 | Vin | Argentine Mendoza Alamos Torrontes 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | argentine-mendoza-alamos-torrontes-2017 | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5379 | 1 | 11.10 | 33 | instock | 5.68 | -0.767922 | 1232.10 | 0.803 | 144.0 | 1.254237 | 366.30 | 8.88 | 36.036036 |
| 194 | 14569 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-06-28 17:56:00 | 2019-06-28 15:56:00 | Vin | Moulin de Gassac IGP Pays d'Hérault Blanc Faun... | Nez très intense, une explosion aromatique d'a... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-faune-2017 | 2020-08-14 17:35:02 | 2020-08-14 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6128 | 1 | 10.60 | 45 | instock | 5.64 | -0.786025 | 137.80 | 0.090 | 58.0 | 0.252427 | 477.00 | 8.48 | 33.490566 |
| 195 | 14570 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-06-28 18:01:06 | 2019-06-28 16:01:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Bl... | Nez Séduisant et puissant. Bouquet de fleurs j... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-bla... | 2020-08-26 15:55:02 | 2020-08-26 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6129 | 1 | 5.20 | 68 | instock | 2.74 | -0.981535 | 104.00 | 0.068 | 88.0 | 0.256410 | 353.60 | 4.16 | 34.134615 |
| 196 | 14573 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-06-28 17:33:35 | 2019-06-28 15:33:35 | Vin | Moulin de Gassac IGP Pays d'Hérault Rouge Maze... | Nez Expressif et complexe, alliant notes de so... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-mazet-levan... | 2020-05-30 10:25:16 | 2020-05-30 08:25:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6127 | 1 | 10.60 | 32 | instock | 5.42 | -0.786025 | 127.20 | 0.083 | 44.0 | 0.315789 | 339.20 | 8.48 | 36.084906 |
| 197 | 14580 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-17 09:53:18 | 2018-07-17 07:53:18 | Vin | David Duband Morey-Saint-Denis 1er Cru Les Bro... | Une robe d'un rouge cerise clair et limpide. A... | publish | closed | closed | david-duband-morey-saint-denis-1er-cru-les-bro... | 2020-08-05 18:15:02 | 2020-08-05 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5002 | 1 | 64.90 | 4 | instock | 34.54 | 1.179942 | 194.70 | 0.127 | 7.0 | 0.545455 | 259.60 | 51.92 | 33.474576 |
| 198 | 14581 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:45:39 | 2018-07-17 07:45:39 | Vin | David Duband Charmes-Chambertin Grand Cru 2014 | Robe cerise chatoyante. Un nez de fruits rouge... | publish | closed | closed | david-duband-charmes-chambertin-grand-cru-2014 | 2020-05-16 09:00:05 | 2020-05-16 07:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5001 | 1 | 217.50 | 18 | instock | 116.87 | 6.704924 | 435.00 | 0.284 | 20.0 | 0.105263 | 3915.00 | 174.00 | 32.833333 |
| 199 | 14596 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-23 10:37:14 | 2019-07-23 08:37:14 | Vin | David Duband Chambolle-Musigny 1er Cru Les Sen... | Une robe d'un rouge carmin avec des reflets br... | publish | closed | closed | david-duband-chambolle-musigny-1er-cru-les-sen... | 2020-02-29 15:25:02 | 2020-02-29 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6201 | 1 | 105.60 | 16 | instock | 57.29 | 2.653512 | 633.60 | 0.413 | 22.0 | 0.315789 | 1689.60 | 84.48 | 32.185133 |
| 200 | 14599 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 14:31:41 | 2018-04-19 12:31:41 | Vin | Maurice Schoech Pinot Noir Pièce de Chêne 2016 | Cette cuvée est issue d’une sélection des plus... | publish | closed | closed | maurice-schoech-pinot-noir-piece-de-chene-2016 | 2020-07-07 17:05:02 | 2020-07-07 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4791 | 1 | 13.60 | 27 | instock | 7.38 | -0.677408 | 108.80 | 0.071 | 35.0 | 0.258065 | 367.20 | 10.88 | 32.169118 |
| 201 | 14600 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-26 17:46:40 | 2019-03-26 16:46:40 | Vin | Maison Trimbach Riesling Grand Cru Geisberg 2012 | Le Geisberg est un joyau de l’Alsace : situé e... | publish | closed | closed | maison-trimbach-riesling-geisberg-2012 | 2020-05-20 17:15:02 | 2020-05-20 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5817 | 1 | 57.60 | 6 | instock | 28.87 | 0.915641 | 288.00 | 0.188 | 11.0 | 0.588235 | 345.60 | 46.08 | 37.348090 |
| 202 | 14604 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:27:36 | 2019-07-24 07:27:36 | Vin | Domaine Giudicelli Muscat du Cap Corse 2016 | Ce Muscat séduit par ses notes de rose et de f... | publish | closed | closed | domaine-giudicelli-muscat-du-cap-corse-2016 | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6204 | 1 | 31.00 | 17 | instock | 15.86 | -0.047429 | 279.00 | 0.182 | 26.0 | 0.418605 | 527.00 | 24.80 | 36.048387 |
| 203 | 14626 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-09-06 11:10:49 | 2018-09-06 09:10:49 | Vin | Chili De Martino Gallardia Cinsault 2017 | Le vignoble du Sud du Chili bénéficie de chaud... | publish | closed | closed | chili-de-martino-gallardia-cinsault-2017 | 2020-08-25 18:25:01 | 2020-08-25 16:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5396 | 1 | 17.10 | 14 | instock | 8.48 | -0.550688 | 119.70 | 0.078 | 21.0 | 0.400000 | 239.40 | 13.68 | 38.011696 |
| 204 | 14632 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 21:29:50 | 2018-04-18 19:29:50 | Vin | Jean-Paul Brun Saint-Amour 2017 | Planté sur un terroir granitique silicieux, le... | publish | closed | closed | jean-paul-brun-saint-amour-2017 | 2020-08-27 15:55:01 | 2020-08-27 13:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4748 | 1 | 14.50 | 35 | instock | 7.42 | -0.644823 | 159.50 | 0.104 | 46.0 | 0.271605 | 507.50 | 11.60 | 36.034483 |
| 205 | 14647 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-29 17:48:30 | 2019-01-29 16:48:30 | Vin | Domaine Hauvette IGP Alpilles Dolia 2012 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2012 | 2020-08-01 15:35:02 | 2020-08-01 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5690 | 1 | 44.60 | 9 | instock | 21.89 | 0.444967 | 356.80 | 0.233 | 17.0 | 0.615385 | 401.40 | 35.68 | 38.649103 |
| 206 | 14657 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 11:22:03 | 2018-04-17 09:22:03 | Vin | Xavier Frissant Touraine Amboise L'Orée des Fr... | <p id="u10579-5">Ce vin est le résultat d'une ... | publish | closed | closed | xavier-frissant-touraine-amboise-loree-des-fre... | 2020-08-21 15:35:02 | 2020-08-21 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4668 | 1 | 12.30 | 21 | instock | 6.23 | -0.724475 | 123.00 | 0.080 | 31.0 | 0.384615 | 258.30 | 9.84 | 36.686992 |
| 207 | 14661 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:29:06 | 2019-01-30 15:29:06 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-rese... | 2020-08-22 16:25:02 | 2020-08-22 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5694 | 1 | 12.70 | 25 | instock | 6.23 | -0.709993 | 114.30 | 0.075 | 34.0 | 0.305085 | 317.50 | 10.16 | 38.681102 |
| 208 | 14676 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 15:25:56 | 2018-04-17 13:25:56 | Vin | Domaine Pellé Menetou Salon Rouge Morogues 2017 | Du fruit et de la fraîcheur avec une légère tr... | publish | closed | closed | pelle-menetou-salon-rouge-morogues-2017 | 2020-08-07 16:05:02 | 2020-08-07 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4672 | 1 | 17.80 | 36 | instock | 9.56 | -0.525344 | 231.40 | 0.151 | 49.0 | 0.305882 | 640.80 | 14.24 | 32.865169 |
| 209 | 14679 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 14:05:15 | 2018-10-09 12:05:15 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge La ... | Grande Pièce est un rouge d'une grande nobless... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-gra... | 2020-03-14 11:45:02 | 2020-03-14 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5474 | 1 | 42.00 | 11 | instock | 22.57 | 0.350833 | 336.00 | 0.219 | 19.0 | 0.533333 | 462.00 | 33.60 | 32.827381 |
| 210 | 14680 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-18 22:06:42 | 2018-04-18 20:06:42 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Blanc Le ... | Le Haut des Clous déploie une matière robuste,... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-le-... | 2020-08-08 17:45:03 | 2020-08-08 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4757 | 1 | 26.50 | 21 | instock | 13.01 | -0.210355 | 185.50 | 0.121 | 28.0 | 0.285714 | 556.50 | 21.20 | 38.632075 |
| 211 | 14692 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-19 10:06:47 | 2019-03-19 09:06:47 | Vin | Château Fonréaud Bordeaux Blanc Le Cygne 2016 | <div>Grâce à la complémentarité des 3 cépages ... | publish | closed | closed | fonreaud-bordeaux-blanc-le-cygne-2016 | 2020-04-25 21:40:31 | 2020-04-25 19:40:31 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5794 | 1 | 21.70 | 15 | instock | 10.65 | -0.384142 | 108.50 | 0.071 | 20.0 | 0.285714 | 325.50 | 17.36 | 38.652074 |
| 212 | 14696 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-07-17 14:49:39 | 2018-07-17 12:49:39 | Vin | Château Tour Des Gendres Bergerac Blanc Moulin... | Moulin des Dames blanc présente les arômes typ... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-moulin... | 2020-07-11 14:00:03 | 2020-07-11 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5019 | 1 | 19.80 | 45 | instock | 10.43 | -0.452933 | 257.40 | 0.168 | 58.0 | 0.252427 | 891.00 | 15.84 | 34.154040 |
| 213 | 14699 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 21:12:38 | 2018-04-17 19:12:38 | Vin | Albert Mann Gewurztraminer Grand Cru Steingrub... | Ce vin présente une robe d’une belle profondeu... | publish | closed | closed | albert-mann-gewurztraminer-grand-cru-steingrub... | 2020-08-20 09:30:06 | 2020-08-20 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4705 | 1 | 31.60 | 9 | instock | 17.14 | -0.025706 | 189.60 | 0.124 | 15.0 | 0.500000 | 284.40 | 25.28 | 32.199367 |
| 214 | 14700 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-17 21:25:37 | 2018-04-17 19:25:37 | Vin | Albert Mann Pinot Gris Grand Cru Furstentum 2016 | Très belle bouteille qui possède un bon équili... | publish | closed | closed | albert-mann-pinot-gris-grand-cru-furstentum-2016 | 2020-08-06 15:35:02 | 2020-08-06 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4708 | 1 | 32.60 | 3 | instock | 17.35 | 0.010500 | 97.80 | 0.064 | 6.0 | 0.666667 | 97.80 | 26.08 | 33.473926 |
| 215 | 14712 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 16:01:48 | 2018-10-09 14:01:48 | Vin | Decelle-Villa Beaune Rouge 2015 | De couleur de moyenne intensité, ce Beaune off... | publish | closed | closed | decelle-villa-beaune-rouge-2015 | 2020-08-20 10:35:02 | 2020-08-20 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5488 | 1 | 43.50 | 11 | instock | 22.70 | 0.405141 | 261.00 | 0.170 | 17.0 | 0.428571 | 478.50 | 34.80 | 34.770115 |
| 216 | 14725 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-20 10:07:09 | 2018-02-20 09:07:09 | Vin | Parcé Frères IGP Côtes Catalanes Hommage à Fer... | Avec cette cuvée, Les Frères Parcé ont voulu r... | publish | closed | closed | parce-freres-hommage-fernand-blanc-2019 | 2020-08-26 09:30:05 | 2020-08-26 07:30:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4241 | 1 | 8.90 | 0 | outofstock | 4.37 | -0.847574 | 133.50 | 0.087 | 15.0 | 2.000000 | 0.00 | 7.12 | 38.623596 |
| 217 | 14729 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-11-26 11:24:02 | 2018-11-26 10:24:02 | Vin | Domaine Huet Vouvray Le Clos du Bourg Demi-Sec... | L’alliance du millésime riche en soleil et des... | publish | closed | closed | domaine-huet-vouvray-le-clos-du-bourg-demi-sec... | 2020-07-24 16:25:02 | 2020-07-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5573 | 1 | 34.70 | 22 | instock | 17.39 | 0.086531 | 416.40 | 0.272 | 34.0 | 0.428571 | 763.40 | 27.76 | 37.355908 |
| 218 | 14736 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-31 11:58:26 | 2019-01-31 10:58:26 | Vin | Gilles Robin Crozes-Hermitage Rouge "1920" 2016 | Fruit d'une histoire et d'un héritage familial... | publish | closed | closed | gilles-robin-crozes-hermitage-rouge-1920-2016-... | 2020-04-21 10:45:03 | 2020-04-21 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5700 | 1 | 44.50 | 0 | outofstock | 22.30 | 0.441347 | 356.00 | 0.232 | 8.0 | 2.000000 | 0.00 | 35.60 | 37.359551 |
| 219 | 14746 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:57:53 | 2018-04-17 19:57:53 | Vin | Domaine Schoenheitz Gewurztraminer Lisenberg 2015 | Robe jaune pâle brillante aux reflets dorés. N... | publish | closed | closed | domaine-schoenheitz-gewurztraminer-lisenberg-2015 | 2020-08-24 17:55:03 | 2020-08-24 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4713 | 1 | 18.40 | 25 | instock | 9.22 | -0.503621 | 165.60 | 0.108 | 34.0 | 0.305085 | 460.00 | 14.72 | 37.364130 |
| 220 | 14751 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 14:39:39 | 2018-02-13 13:39:39 | Vin | Planeta Sicilia Alastro 2017 | Alastro est finement aromatique, délicatement ... | publish | closed | closed | planeta-sicilia-alastro-2017 | 2020-08-22 11:35:02 | 2020-08-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4157 | 1 | 12.00 | 36 | instock | 6.45 | -0.735337 | 144.00 | 0.094 | 48.0 | 0.285714 | 432.00 | 9.60 | 32.812500 |
| 221 | 14756 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-07 16:35:10 | 2018-06-07 14:35:10 | Vin | Château Cordet Margaux 2013 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-cordet-margaux-2013 | 2020-08-27 16:55:01 | 2020-08-27 14:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4975 | 1 | 23.70 | 19 | instock | 12.73 | -0.311731 | 213.30 | 0.139 | 28.0 | 0.382979 | 450.30 | 18.96 | 32.858650 |
| 222 | 14768 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-03-22 11:03:06 | 2018-03-22 10:03:06 | Cognac | Cognac Frapin 1270 | De couleur ambre doré, ce cognac développe un ... | publish | closed | closed | cognac-frapin-1270 | 2020-07-25 16:45:02 | 2020-07-25 14:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4400 | 1 | 44.00 | 12 | instock | 21.18 | 0.423244 | 396.00 | 0.258 | 21.0 | 0.545455 | 528.00 | 35.20 | 39.829545 |
| 223 | 14773 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 17:01:54 | 2019-04-04 15:01:54 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chai Ca... | 644 bouteilles - 16 ans d'âge.\n\nNez très élé... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-chai-ca... | 2020-07-31 18:25:03 | 2020-07-31 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5918 | 1 | 114.00 | 12 | instock | 52.25 | 2.957639 | 342.00 | 0.223 | 15.0 | 0.222222 | 1368.00 | 91.20 | 42.708333 |
| 224 | 14774 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-04-04 16:39:24 | 2019-04-04 14:39:24 | Whisky | Wemyss Malts Single Cask Scotch Whisky Chocola... | 305 bouteilles, 13 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-chocolate-moka-cake | 2019-12-23 09:30:21 | 2019-12-23 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5916 | 1 | 93.00 | 1 | instock | 40.49 | 2.197321 | 93.00 | 0.061 | 2.0 | 0.666667 | 93.00 | 74.40 | 45.577957 |
| 225 | 14775 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-04 16:49:37 | 2019-04-04 14:49:37 | Whisky | Wemyss Malts Single Cask Scotch Whisky Choc 'n... | 710 bouteilles, 17 ans d'âge.\n\n<span title="... | publish | closed | closed | wemyss-malts-single-cask-scotch-whisky-choc-n-... | 2020-03-11 09:30:09 | 2020-03-11 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5917 | 1 | 122.00 | 12 | instock | 54.24 | 3.247285 | 366.00 | 0.239 | 15.0 | 0.222222 | 1464.00 | 97.60 | 44.426230 |
| 226 | 14797 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-06-08 10:05:31 | 2019-06-08 08:05:31 | Vin | Gilles Robin Cornas 2016 | Le Cornas 2016 du Domaine Gilles Robin dévoile... | publish | closed | closed | gilles-robin-cornas-2016 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6108 | 1 | 46.00 | 7 | instock | 24.72 | 0.495655 | 184.00 | 0.120 | 11.0 | 0.444444 | 322.00 | 36.80 | 32.826087 |
| 227 | 14800 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-02-13 10:48:51 | 2018-02-13 09:48:51 | Vin | Emile Boeckel Pinot Noir Terres Rouges 2016 | Lieu-dit ‘Rotland’, fait partie du Zotzenberg ... | publish | closed | closed | emile-boeckel-pinot-noir-terres-rouges-2016 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4107 | 1 | 35.00 | 8 | instock | 17.54 | 0.097393 | 175.00 | 0.114 | 13.0 | 0.476190 | 280.00 | 28.00 | 37.357143 |
| 228 | 14802 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-15 09:44:00 | 2018-05-15 07:44:00 | Vin | Domaine Des Croix Beaune 1er Cru Les Cent Vign... | Une belle robe pourpre. Le nez est complexe, t... | publish | closed | closed | domaine-des-croix-beaune-1er-cru-les-cent-vign... | 2020-01-03 16:56:04 | 2020-01-03 15:56:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4901 | 1 | 41.00 | 17 | instock | 20.76 | 0.314627 | 369.00 | 0.241 | 26.0 | 0.418605 | 697.00 | 32.80 | 36.707317 |
| 229 | 14805 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-05-15 10:10:57 | 2018-05-15 08:10:57 | Vin | Domaine Des Croix Corton Grand Cru Les Grèves ... | Ce vin exhale de beaux arômes de fruits rouges... | publish | closed | closed | domaine-des-croix-corton-grand-cru-les-greves-... | 2020-06-27 09:00:07 | 2020-06-27 07:00:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4903 | 1 | 102.30 | 12 | instock | 51.80 | 2.534033 | 204.60 | 0.133 | 14.0 | 0.153846 | 1227.60 | 81.84 | 36.705767 |
| 230 | 14809 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-13 16:17:15 | 2018-09-13 14:17:15 | Vin | La Rectorie Banyuls Léon Parcé 2016 | <div class="pw-hidden-cp">Le grenat est très s... | publish | closed | closed | la-rectorie-banyuls-leon-parce-2016 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5443 | 1 | 23.60 | 32 | instock | 12.56 | -0.315351 | 236.00 | 0.154 | 42.0 | 0.270270 | 755.20 | 18.88 | 33.474576 |
| 231 | 14819 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-10-31 14:04:38 | 2018-10-31 13:04:38 | Vin | Domaine Chambeyron Vin de Pays des Collines Rh... | De belles notes de fruits jaunes, fruits à cha... | publish | closed | closed | domaine-chambeyron-vdp-viognier-2016 | 2019-04-27 16:50:05 | 2019-04-27 14:50:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5525 | 1 | 12.00 | 23 | instock | 6.26 | -0.735337 | 132.00 | 0.086 | 34.0 | 0.385965 | 276.00 | 9.60 | 34.791667 |
| 232 | 14827 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 09:56:52 | 2018-11-26 08:56:52 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | La minéralité crayeuse s'harmonise ucu aux not... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5545 | 1 | 65.90 | 13 | instock | 32.35 | 1.216148 | 461.30 | 0.301 | 20.0 | 0.424242 | 856.70 | 52.72 | 38.638088 |
| 233 | 14828 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-11-26 09:52:56 | 2018-11-26 08:52:56 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Ce Chassagne Montrachet se révèle être un vin ... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-03-27 09:30:10 | 2020-03-27 08:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5544 | 1 | 61.60 | 0 | outofstock | 31.51 | 1.060463 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 49.28 | 36.059253 |
| 234 | 14839 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-07-17 14:32:01 | 2018-07-17 12:32:01 | Vin | Château Tour Des Gendres Bergerac Blanc Cuvée ... | Les Sémillons (50% de l'assemblage) sont récol... | publish | closed | closed | chateau-tour-des-gendres-bergerac-blanc-cuvee-... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5016 | 1 | 9.30 | 40 | instock | 4.81 | -0.833092 | 139.50 | 0.091 | 55.0 | 0.315789 | 372.00 | 7.44 | 35.349462 |
| 235 | 14844 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-15 16:18:18 | 2019-01-15 15:18:18 | Vin | Albert Boxler Pinot Gris Réserve 2016 | Ce Pinot Gris Réserve provient d’un savant ass... | publish | closed | closed | albert-boxler-pinot-gris-reserve-2016 | 2020-06-13 15:05:02 | 2020-06-13 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5617 | 1 | 27.80 | 0 | outofstock | 14.65 | -0.163287 | 250.20 | 0.163 | 9.0 | 2.000000 | 0.00 | 22.24 | 34.127698 |
| 236 | 14845 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:12:13 | 2019-01-15 15:12:13 | Vin | Albert Boxler Pinot Noir "S" 2016 | Un grand Pinot Noir provenant du Grand Cru Som... | publish | closed | closed | albert-boxler-pinot-noir-s-2016 | 2020-08-25 14:00:02 | 2020-08-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5616 | 1 | 38.40 | 7 | instock | 19.05 | 0.220492 | 153.60 | 0.100 | 11.0 | 0.444444 | 268.80 | 30.72 | 37.988281 |
| 237 | 14855 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:52:33 | 2019-01-15 14:52:33 | Vin | Albert Boxler Chasselas 2016 | Cépage réputé modeste, mais cela donne entre l... | publish | closed | closed | albert-boxler-chasselas-2016 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5613 | 1 | 19.20 | 28 | instock | 10.22 | -0.474656 | 211.20 | 0.138 | 39.0 | 0.328358 | 537.60 | 15.36 | 33.463542 |
| 238 | 14856 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 16:00:35 | 2019-01-15 15:00:35 | Vin | Albert Boxler Crémant d'Alsace Brut 2014 | Un superbe crémant doté d'une bulle fine et ch... | publish | closed | closed | albert-boxler-cremant-2014 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5614 | 1 | 19.20 | 17 | instock | 9.42 | -0.474656 | 153.60 | 0.100 | 25.0 | 0.380952 | 326.40 | 15.36 | 38.671875 |
| 239 | 14864 | 0 | 0 | 0 | 0.0 | 24.0 | taxable | 2.0 | 2018-02-27 13:33:54 | 2018-02-27 12:33:54 | Vin | I Fabbri Chianti Classico Lamole 2017 | Un nez typique de petits fruits rouges. Une bo... | publish | closed | closed | i-fabbri-chianti-classico-lamole-2017 | 2020-08-22 14:35:02 | 2020-08-22 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4275 | 1 | 14.90 | 62 | instock | 7.78 | -0.630340 | 357.60 | 0.233 | 86.0 | 0.324324 | 923.80 | 11.92 | 34.731544 |
| 240 | 14865 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 13:53:06 | 2018-02-27 12:53:06 | Vin | I Fabbri Chianti Classico Riserva 2015 | Le Riserva a été élevé 10 mois en barriques fr... | publish | closed | closed | i-fabbri-chianti-classico-riserva-2015 | 2020-06-16 17:25:02 | 2020-06-16 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4277 | 1 | 24.80 | 28 | instock | 12.69 | -0.271904 | 223.20 | 0.146 | 37.0 | 0.276923 | 694.40 | 19.84 | 36.038306 |
| 241 | 14897 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:18:32 | 2020-04-24 19:18:32 | Vin | Gratavinum Priorat GV5 2011 | Couleur grenat très foncé, avec des reflets. U... | publish | closed | closed | gratavinum-priorat-gv5-2011 | 2020-06-26 15:05:03 | 2020-06-26 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6886 | 1 | 42.00 | 8 | instock | 20.62 | 0.350833 | 210.00 | 0.137 | 13.0 | 0.476190 | 336.00 | 33.60 | 38.630952 |
| 242 | 14899 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-07 17:07:05 | 2019-05-07 15:07:05 | Vin | Christophe Pichon Saint-Joseph Blanc 2017 | Le Saint Joseph du Domaine Pichon : un vin bla... | publish | closed | closed | christophe-pichon-saint-joseph-blanc-2017 | 2020-04-03 11:35:02 | 2020-04-03 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6049 | 1 | 21.80 | 30 | instock | 10.81 | -0.380521 | 196.20 | 0.128 | 39.0 | 0.260870 | 654.00 | 17.44 | 38.016055 |
| 243 | 14905 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:11:16 | 2018-02-13 09:11:16 | Vin | Emile Boeckel Pinot Gris Grand Cru Zotzenberg ... | Vin moelleux et fruité, arôme de pêche de vign... | publish | closed | closed | emile-boeckel-pinot-gris-gc-zotzenberg-2016 | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4101 | 1 | 15.80 | 21 | instock | 8.33 | -0.597755 | 110.60 | 0.072 | 28.0 | 0.285714 | 331.80 | 12.64 | 34.098101 |
| 244 | 14912 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-15 15:00:13 | 2019-01-15 14:00:13 | Vin | Domaine Weinbach Pinot Blanc 2017 | Cette cuvée Pinot Blanc trouve ses origines au... | publish | closed | closed | domaine-weinbach-pinot-blanc-2017 | 2020-08-20 09:30:07 | 2020-08-20 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5610 | 1 | 18.00 | 29 | instock | 9.02 | -0.518103 | 198.00 | 0.129 | 40.0 | 0.318841 | 522.00 | 14.40 | 37.361111 |
| 245 | 14915 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-01-15 15:30:49 | 2019-01-15 14:30:49 | Vin | Domaine Weinbach Gewurztraminer Grand Cru Furs... | Né sur un sol marno-gréseux, ce Furstentum est... | publish | closed | closed | domaine-weinbach-gewurztraminer-gc-furstentum-... | 2019-01-23 09:33:57 | 2019-01-23 08:33:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5612 | 1 | 124.80 | 19 | instock | 66.41 | 3.348660 | 124.80 | 0.081 | 20.0 | 0.051282 | 2371.20 | 99.84 | 33.483574 |
| 246 | 14923 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-06-28 17:22:27 | 2019-06-28 15:22:27 | Champagne | Champagne Gosset Célébris Vintage 2007 | Une robe somptueuse a la teinte jaune pâle eti... | publish | closed | closed | champagne-gosset-celebris-vintage-2007 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6126 | 1 | 135.00 | 138 | instock | 80.33 | 3.717958 | 675.00 | 0.440 | 143.0 | 0.035587 | 18630.00 | 108.00 | 25.620370 |
| 247 | 14930 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-06-07 17:11:47 | 2018-06-07 15:11:47 | Vin | Château Lafont Menaut Pessac-Leognan Blanc 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-blanc-2017 | 2020-08-25 11:45:02 | 2020-08-25 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4977 | 1 | 16.30 | 31 | instock | 8.84 | -0.579652 | 195.60 | 0.128 | 43.0 | 0.324324 | 505.30 | 13.04 | 32.208589 |
| 248 | 14941 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:34:40 | 2018-02-13 13:34:40 | Vin | Elian Daros Côtes du Marmandais Coucou Blanc 2016 | Blanc atypique pour la région, certainement un... | publish | closed | closed | elian-daros-cotes-du-marmandais-coucou-blanc-2016 | 2020-07-15 17:55:03 | 2020-07-15 15:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4156 | 1 | 20.35 | 44 | instock | 10.30 | -0.433020 | 264.55 | 0.173 | 57.0 | 0.257426 | 895.40 | 16.28 | 36.732187 |
| 249 | 14944 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-13 14:29:41 | 2018-02-13 13:29:41 | Vin | Elian Daros Côtes du Marmandais Le Vignoble d'... | Le nez est charmeur sur des notes de fruits no... | publish | closed | closed | elian-daros-cotes-du-marmandais-vignoble-elian... | 2020-08-08 09:00:08 | 2020-08-08 07:00:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4155 | 1 | 14.50 | 33 | instock | 7.27 | -0.644823 | 145.00 | 0.095 | 43.0 | 0.263158 | 478.50 | 11.60 | 37.327586 |
| 250 | 14945 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 09:57:24 | 2018-02-27 08:57:24 | Vin | Chermette Domaine du Vissoux Beaujolais Blanc ... | Encore méconnu, le Beaujolais blanc peut étonn... | publish | closed | closed | chermette-vissoux-beaujolais-blanc-collonge-2017 | 2020-06-17 17:55:02 | 2020-06-17 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4260 | 1 | 12.20 | 31 | instock | 6.37 | -0.728096 | 158.60 | 0.103 | 44.0 | 0.346667 | 378.20 | 9.76 | 34.733607 |
| 251 | 14950 | 0 | 0 | 0 | 0.0 | 122.0 | taxable | 2.0 | 2018-04-18 11:53:51 | 2018-04-18 09:53:51 | Vin | François Baur Pinot Noir Schlittweg 2017 | Un éclat de fruits, de la souplesse, de la ron... | publish | closed | closed | francois-baur-pinot-noir-schlittweg-2017 | 2020-05-06 11:35:01 | 2020-05-06 09:35:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4726 | 1 | 12.70 | 0 | outofstock | 6.82 | -0.709993 | 1549.40 | 1.010 | 122.0 | 2.000000 | 0.00 | 10.16 | 32.874016 |
| 252 | 14955 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-19 11:43:49 | 2019-03-19 10:43:49 | Vin | Château Le Puy Bordeaux Côtes-de-Francs Emilie... | Robe intense et limpide, sur des notes de frui... | publish | closed | closed | le-puy-cotes-de-francs-emilien-2016 | 2020-06-06 14:55:01 | 2020-06-06 12:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5804 | 1 | 25.00 | 25 | instock | 12.40 | -0.264663 | 225.00 | 0.147 | 34.0 | 0.305085 | 625.00 | 20.00 | 38.000000 |
| 253 | 14975 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-12 09:45:14 | 2018-02-12 08:45:14 | Vin | Pierre Gaillard Condrieu 2018 | Un joli nez de fruits exotiques comme le litch... | publish | closed | closed | pierre-gaillard-condrieu-2018 | 2020-08-14 18:15:02 | 2020-08-14 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4041 | 1 | 32.70 | 12 | instock | 17.57 | 0.014120 | 196.20 | 0.128 | 18.0 | 0.400000 | 392.40 | 26.16 | 32.836391 |
| 254 | 14977 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:28:30 | 2018-02-12 09:28:30 | Vin | Pierre Gaillard Côtes-du-Rhône Blanc Les Gendr... | Vin frais, floral et fruité, minéral, ample et... | publish | closed | closed | pierre-gaillard-gendrines-2018 | 2020-08-27 09:30:07 | 2020-08-27 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4047 | 1 | 18.30 | 0 | outofstock | 9.93 | -0.507241 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 14.64 | 32.172131 |
| 255 | 14980 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:03:05 | 2018-02-12 09:03:05 | Vin | Pierre Gaillard Côte Rôtie Esprit de Blonde 2017 | Complexité, finesse et subtilité sont au rende... | publish | closed | closed | pierre-gaillard-cote-rotie-esprit-blond-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4043 | 1 | 60.00 | 0 | outofstock | 29.45 | 1.002534 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 48.00 | 38.645833 |
| 256 | 14981 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 13:57:21 | 2018-05-11 11:57:21 | Vin | Saumaize-Michelin Mâcon Vergisson Sur La Roche... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-macon-vergisson-sur-la-roche... | 2020-08-04 09:30:06 | 2020-08-04 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4885 | 1 | 18.70 | 0 | instock | 9.66 | -0.492759 | 187.00 | 0.122 | 10.0 | 2.000000 | 0.00 | 14.96 | 35.427807 |
| 257 | 14982 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 15:13:51 | 2019-01-31 14:13:51 | Vin | François Baur Gewurztraminer Herrenweg de Turc... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-gewurztraminer-herrenweg-de-turc... | 2020-07-29 17:25:01 | 2020-07-29 15:25:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5715 | 1 | 13.70 | 15 | instock | 7.29 | -0.673787 | 95.90 | 0.063 | 22.0 | 0.378378 | 205.50 | 10.96 | 33.485401 |
| 258 | 14983 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-28 10:21:36 | 2019-03-28 09:21:36 | Champagne | Coteaux Champenois Egly-Ouriet Ambonnay Rouge ... | Cet Ambonnay évoque les grands Pinots Noirs de... | publish | closed | closed | coteaux-champenois-egly-ouriet-ambonnay-rouge-... | 2020-04-01 09:30:09 | 2020-04-01 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5892 | 1 | 191.30 | 98 | instock | 116.06 | 5.756336 | 1147.80 | 0.748 | 104.0 | 0.059406 | 18747.40 | 153.04 | 24.163617 |
| 259 | 15004 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 21:08:33 | 2018-04-17 19:08:33 | Vin | Albert Mann Gewurztraminer 2017 | Un nez floral assez intense sur des arômes de ... | publish | closed | closed | albert-mann-gewurztraminer-2017 | 2019-12-23 09:30:27 | 2019-12-23 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4704 | 1 | 18.20 | 30 | instock | 9.22 | -0.510862 | 163.80 | 0.107 | 39.0 | 0.260870 | 546.00 | 14.56 | 36.675824 |
| 260 | 15022 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 13:14:22 | 2018-02-12 12:14:22 | Vin | Oratoire Saint Martin Cairanne Rouge Les Douye... | Le rustique noble incarné. Beau grain, beaucou... | publish | closed | closed | oratoire-saint-martin-cairanne-douyes-2016 | 2020-08-27 18:45:02 | 2020-08-27 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4065 | 1 | 19.50 | 0 | outofstock | 9.67 | -0.463794 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 15.60 | 38.012821 |
| 261 | 15026 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-02-05 10:14:58 | 2019-02-05 09:14:58 | Vin | Domaine de l'Hortus Pays de l'Hérault Le Loup ... | Issu des jeunes vignes du domaine (Syrah, Gren... | publish | closed | closed | domaine-de-lhortus-herault-loup-bergerie-2018 | 2020-08-20 15:15:02 | 2020-08-20 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5722 | 1 | 7.10 | 38 | instock | 3.48 | -0.912744 | 99.40 | 0.065 | 52.0 | 0.311111 | 269.80 | 5.68 | 38.732394 |
| 262 | 15030 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:35:29 | 2018-04-13 13:35:29 | Vin | Gilbert Picq Chablis 2017 | Un Chablis Village qui a tout d'un grand! Rich... | publish | closed | closed | gilbert-picq-chablis-2017 | 2020-08-27 16:05:02 | 2020-08-27 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4613 | 1 | 16.90 | 23 | instock | 8.38 | -0.557929 | 185.90 | 0.121 | 34.0 | 0.385965 | 388.70 | 13.52 | 38.017751 |
| 263 | 15032 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:48:09 | 2018-02-20 10:48:09 | Vin | Domaine Saint-Denis Bourgogne Rouge Le Clos 2017 | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-rouge-le-clos-2017 | 2020-08-27 17:25:02 | 2020-08-27 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4251 | 1 | 14.10 | 31 | instock | 7.65 | -0.659305 | 155.10 | 0.101 | 42.0 | 0.301370 | 437.10 | 11.28 | 32.180851 |
| 264 | 15033 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-20 11:24:01 | 2018-02-20 10:24:01 | Vin | Domaine Saint-Denis Mâcon Chardonnay 2017 | Ce Mâcon provient de la commune de Chardonnay,... | publish | closed | closed | domaine-saint-denis-macon-chardonnay-2017 | 2020-08-05 16:25:02 | 2020-08-05 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4248 | 1 | 14.80 | 38 | instock | 7.49 | -0.633961 | 177.60 | 0.116 | 50.0 | 0.272727 | 562.40 | 11.84 | 36.739865 |
| 265 | 15035 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-31 14:25:44 | 2019-01-31 13:25:44 | Vin | Philippe Alliet Chinon Rouge Coteau de Noiré 2016 | La sensation crayeuse des sols argilo-calcaire... | publish | closed | closed | alliet-chinon-rouge-noire-2016 | 2019-05-20 15:50:03 | 2019-05-20 13:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5709 | 1 | 31.70 | 0 | outofstock | 16.54 | -0.022085 | 158.50 | 0.103 | 5.0 | 2.000000 | 0.00 | 25.36 | 34.779180 |
| 266 | 15036 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-01-31 13:23:20 | 2019-01-31 12:23:20 | Vin | Domaine de l'Ecu Muscadet Gneiss 2015 | <span style="float: none;background-color: tra... | publish | closed | closed | domaine-de-lecu-muscadet-gneiss-2015 | 2020-05-13 09:30:07 | 2020-05-13 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5704 | 1 | 16.90 | 35 | instock | 8.30 | -0.557929 | 185.90 | 0.121 | 46.0 | 0.271605 | 591.50 | 13.52 | 38.609467 |
| 267 | 15038 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 15:27:12 | 2018-04-13 13:27:12 | Vin | Gilbert Picq Chablis Vieilles Vignes 2017 | Un très joli Chablis, frais et minéral, ciselé... | publish | closed | closed | gilbert-picq-chablis-vieilles-vignes-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4612 | 1 | 20.60 | 0 | outofstock | 10.22 | -0.423968 | 103.00 | 0.067 | 5.0 | 2.000000 | 0.00 | 16.48 | 37.985437 |
| 268 | 15047 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:29:29 | 2018-05-17 10:29:29 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge-rubis soutenue aux reflets violets.... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-07-09 18:15:02 | 2020-07-09 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4928 | 1 | 7.90 | 28 | instock | 3.88 | -0.883780 | 94.80 | 0.062 | 40.0 | 0.352941 | 221.20 | 6.32 | 38.607595 |
| 269 | 15070 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-07-25 09:31:09 | 2019-07-25 07:31:09 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Champa... | La couleur rouge intense annonce un belle conc... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-champa... | 2020-07-30 09:30:08 | 2020-07-30 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6216 | 1 | 121.00 | 14 | instock | 60.02 | 3.211079 | 242.00 | 0.158 | 16.0 | 0.133333 | 1694.00 | 96.80 | 37.995868 |
| 270 | 15072 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-07-25 09:10:32 | 2019-07-25 07:10:32 | Vin | Domaine des Comtes Lafon Volnay 1er Cru Santen... | "Il s'agit là de la meilleure partie de l'appe... | publish | closed | closed | domaine-des-comtes-lafon-volnay-1er-cru-santen... | 2020-06-25 09:30:06 | 2020-06-25 07:30:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6213 | 1 | 121.00 | 9 | instock | 63.14 | 3.211079 | 363.00 | 0.237 | 12.0 | 0.285714 | 1089.00 | 96.80 | 34.772727 |
| 271 | 15073 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:56:21 | 2018-07-17 08:56:21 | Vin | Domaine des Comtes Lafon Monthélie 1er Cru Les... | <span class="font5">Ce Monthélie 1er cru provi... | publish | closed | closed | domaine-des-comtes-lafon-monthelie-1er-cru-les... | 2020-07-02 09:30:07 | 2020-07-02 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5010 | 1 | 55.60 | 6 | instock | 30.16 | 0.843230 | 222.40 | 0.145 | 10.0 | 0.500000 | 333.60 | 44.48 | 32.194245 |
| 272 | 15075 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 15:39:43 | 2018-02-14 14:39:43 | Vin | Parés Baltà Penedès Indigena 2017 | Des couleurs et aromes intenses où le fruit et... | publish | closed | closed | pares-balta-penedes-indigena-2017 | 2020-08-20 15:35:02 | 2020-08-20 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4165 | 1 | 12.00 | 26 | instock | 5.95 | -0.735337 | 120.00 | 0.078 | 36.0 | 0.322581 | 312.00 | 9.60 | 38.020833 |
| 273 | 15080 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 16:41:40 | 2019-03-19 15:41:40 | Vin | Château Tour De Pez Saint-Estèphe Les Hauts de... | <p class="first">Ce vin est issu des vignes pl... | publish | closed | closed | saint-estephe-hauts-de-pez-2016 | 2020-04-25 21:41:28 | 2020-04-25 19:41:28 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5809 | 1 | 17.90 | 32 | instock | 9.71 | -0.521723 | 196.90 | 0.128 | 43.0 | 0.293333 | 572.80 | 14.32 | 32.192737 |
| 274 | 15095 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-06 11:04:31 | 2018-09-06 09:04:31 | Vin | Chili Errazuriz Cabernet Sauvignon 2016 | Expression noble de cabernet sauvignon vinifié... | publish | closed | closed | chili-errazuriz-cabernet-sauvignon-2015 | 2020-05-30 10:39:26 | 2020-05-30 08:39:26 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5395 | 1 | 12.70 | 24 | instock | 6.82 | -0.709993 | 127.00 | 0.083 | 34.0 | 0.344828 | 304.80 | 10.16 | 32.874016 |
| 275 | 15106 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 13:25:19 | 2018-05-17 11:25:19 | Vin | Domaine Rouge Garance Côtes du Rhône Blanc De ... | Beaucoup de texture et d'ampleur en bouche pou... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-blanc-de-... | 2020-08-14 14:35:02 | 2020-08-14 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4936 | 1 | 11.10 | 25 | instock | 5.68 | -0.767922 | 111.00 | 0.072 | 35.0 | 0.333333 | 277.50 | 8.88 | 36.036036 |
| 276 | 15116 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-02-15 14:02:14 | 2019-02-15 13:02:14 | Vin | Triennes IGP Méditerranée Blanc Sainte Fleur 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-sainte-fleur-2018 | 2020-08-22 14:45:02 | 2020-08-22 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5736 | 1 | 14.90 | 32 | instock | 7.31 | -0.630340 | 149.00 | 0.097 | 42.0 | 0.270270 | 476.80 | 11.92 | 38.674497 |
| 277 | 15120 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 15:45:13 | 2018-02-28 14:45:13 | Vin | Domaine de l'Idylle Savoie Cruet 2018 | Blanc brillant, très clair. Nez fin aux arômes... | publish | closed | closed | idylle-savoie-cruet-2018 | 2020-05-30 15:55:02 | 2020-05-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4304 | 1 | 8.10 | 45 | instock | 4.19 | -0.876539 | 113.40 | 0.074 | 59.0 | 0.269231 | 364.50 | 6.48 | 35.339506 |
| 278 | 15125 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 18:02:05 | 2019-02-15 17:02:05 | Vin | Domaine Clerget Chambolle-Musigny 2014 | Un vin de rêve… complexe, riche en sensations ... | publish | closed | closed | domaine-clerget-chambolle-musigny-2014 | 2019-12-02 09:34:29 | 2019-12-02 08:34:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5742 | 1 | 42.10 | 3 | instock | 22.84 | 0.354453 | 84.20 | 0.055 | 5.0 | 0.500000 | 126.30 | 33.68 | 32.185273 |
| 279 | 15126 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-07-23 10:50:24 | 2019-07-23 08:50:24 | Vin | Domaine Clerget Echezeaux Grand Cru En Orveaux... | Ce vin allie la puissance et la finesse… Un vi... | publish | closed | closed | domaine-clerget-echezeaux-en-orveaux-2015 | 2020-06-06 15:45:01 | 2020-06-06 13:45:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6202 | 1 | 116.40 | 12 | instock | 63.15 | 3.044533 | 582.00 | 0.380 | 17.0 | 0.344828 | 1396.80 | 93.12 | 32.184278 |
| 280 | 15127 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-02-15 17:54:04 | 2019-02-15 16:54:04 | Vin | Domaine Clerget Chambolle-Musigny Les Charmes ... | Un grand classique que ce Chambolle-Musigny 1e... | publish | closed | closed | clerget-chambolle-musigny-charmes-2015 | 2020-03-27 09:30:13 | 2020-03-27 08:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5741 | 1 | 73.30 | 4 | instock | 37.87 | 1.484070 | 146.60 | 0.096 | 6.0 | 0.400000 | 293.20 | 58.64 | 35.419509 |
| 281 | 15134 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-05-07 17:25:10 | 2019-05-07 15:25:10 | Vin | Christophe Pichon Condrieu 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | christophe-pichon-saint-condrieu-2017 | 2019-09-23 09:31:17 | 2019-09-23 07:31:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6050 | 1 | 38.50 | 0 | outofstock | 20.09 | 0.224113 | 231.00 | 0.151 | 6.0 | 2.000000 | 0.00 | 30.80 | 34.772727 |
| 282 | 15136 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:34:22 | 2018-02-27 09:34:22 | Vin | Domaine Bulliat Beaujolais Villages Bibine 2018 | Un joli beaujolais tout en gourmandise et en é... | publish | closed | closed | bulliat-beaujolais-villages-bibine-2018 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4265 | 1 | 9.60 | 27 | instock | 4.81 | -0.822230 | 115.20 | 0.075 | 39.0 | 0.363636 | 259.20 | 7.68 | 37.369792 |
| 283 | 15138 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 14:48:09 | 2018-10-09 12:48:09 | Vin | Domaine Bulliat Moulin-à-Vent 2017 | Vin Beaujolais riche, puissant et racé! Les ta... | publish | closed | closed | domaine-bulliat-moulin-a-vent-2017 | 2020-08-06 17:35:02 | 2020-08-06 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5481 | 1 | 11.50 | 25 | instock | 5.64 | -0.753440 | 103.50 | 0.067 | 34.0 | 0.305085 | 287.50 | 9.20 | 38.695652 |
| 284 | 15140 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 13:50:16 | 2018-02-13 12:50:16 | Vin | Elian Daros Côtes du Marmandais Abouriou 2016 | <span id="u612-22">Abouriou</span> est un vin ... | publish | closed | closed | elian-daros-abouriou-2016 | 2020-03-13 09:30:09 | 2020-03-13 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4151 | 1 | 13.70 | 23 | instock | 7.36 | -0.673787 | 95.90 | 0.063 | 30.0 | 0.264151 | 315.10 | 10.96 | 32.846715 |
| 285 | 15141 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:26:09 | 2018-02-13 13:26:09 | Vin | Elian Daros Côtes du Marmandais Le Vin Est Une... | Comme son nom l'indique, ce vin est un vin pla... | publish | closed | closed | elian-daros-cotes-du-marmandais-vin-fete-2017 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4154 | 1 | 9.80 | 31 | instock | 4.91 | -0.814989 | 127.40 | 0.083 | 44.0 | 0.346667 | 303.80 | 7.84 | 37.372449 |
| 286 | 15145 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-13 14:31:47 | 2018-04-13 12:31:47 | Vin | François Bergeret Hautes Côtes de Beaune Rouge... | La robe est rouge rubis . Le nez est ouvert su... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rouge... | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4609 | 1 | 11.80 | 40 | instock | 6.04 | -0.742578 | 165.20 | 0.108 | 54.0 | 0.297872 | 472.00 | 9.44 | 36.016949 |
| 287 | 15146 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 14:26:33 | 2018-04-13 12:26:33 | Vin | François Bergeret Hautes Côtes de Beaune Vieil... | La robe est brillante et profonde. Le nez est ... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-rondo... | 2019-02-20 09:32:38 | 2019-02-20 08:32:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4607 | 1 | 13.40 | 41 | instock | 7.13 | -0.684649 | 160.80 | 0.105 | 53.0 | 0.255319 | 549.40 | 10.72 | 33.488806 |
| 288 | 15147 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-13 13:59:17 | 2018-04-13 11:59:17 | Vin | Catherine et Claude Maréchal Ladoix Rouge Les ... | Au nez, la framboise, la cerise confite domine... | publish | closed | closed | catherine-et-claude-marechal-ladoix-rouge-les-... | 2020-07-16 09:30:08 | 2020-07-16 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4603 | 1 | 31.50 | 8 | instock | 15.95 | -0.029327 | 189.00 | 0.123 | 14.0 | 0.545455 | 252.00 | 25.20 | 36.706349 |
| 289 | 15148 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-13 14:16:01 | 2018-04-13 12:16:01 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-08 10:45:03 | 2020-08-08 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4605 | 1 | 32.20 | 9 | instock | 16.47 | -0.003983 | 289.80 | 0.189 | 18.0 | 0.666667 | 289.80 | 25.76 | 36.063665 |
| 290 | 15149 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-04-13 14:19:27 | 2018-04-13 12:19:27 | Vin | Catherine et Claude Maréchal Volnay 2017 | Ce Volnay, élevé 12 mois en fûts anciens, y dé... | publish | closed | closed | catherine-et-claude-marechal-volnay-2017 | 2020-06-13 15:55:03 | 2020-06-13 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4606 | 1 | 50.10 | 0 | outofstock | 24.59 | 0.644098 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 40.08 | 38.647705 |
| 291 | 15155 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-09-13 16:26:11 | 2018-09-13 14:26:11 | Vin | La Préceptorie Maury Rouge Cuvée Aurélie 2017 | <div class="pw-hidden-cp">La bouche est intens... | publish | closed | closed | la-preceptorie-maury-aurelie-2017 | 2020-08-20 13:31:13 | 2020-08-20 11:31:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5444 | 1 | 15.50 | 40 | instock | 7.69 | -0.608617 | 201.50 | 0.131 | 53.0 | 0.279570 | 620.00 | 12.40 | 37.983871 |
| 292 | 15161 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-07-30 14:59:19 | 2019-07-30 12:59:19 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le P... | Cuvée signature créée par Delphine Rousseau, ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-pas-d... | 2020-02-10 09:30:09 | 2020-02-10 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6226 | 1 | 20.40 | 26 | instock | 10.96 | -0.431209 | 204.00 | 0.133 | 36.0 | 0.322581 | 530.40 | 16.32 | 32.843137 |
| 293 | 15162 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 14:53:47 | 2019-07-30 12:53:47 | Vin | Le Pas de l'Escalette IGP Hérault Ze Cinsault ... | Après un égrappage et une cuvaison d'une trent... | publish | closed | closed | le-pas-de-lescalette-herault-ze-cinsault-2017 | 2020-06-26 09:30:08 | 2020-06-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6225 | 1 | 20.40 | 26 | instock | 10.22 | -0.431209 | 163.20 | 0.106 | 34.0 | 0.266667 | 530.40 | 16.32 | 37.377451 |
| 294 | 15163 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-30 15:03:50 | 2019-07-30 13:03:50 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | les Frieys est un seul et même individu, les r... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-les-f... | 2020-08-01 11:25:03 | 2020-08-01 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6227 | 1 | 40.20 | 11 | instock | 21.39 | 0.285663 | 321.60 | 0.210 | 19.0 | 0.533333 | 442.20 | 32.16 | 33.488806 |
| 295 | 15178 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-13 15:01:34 | 2019-03-13 14:01:34 | Vin | Camille Giroud Santenay Blanc 2017 | <div>Un Santenay riche et consistant, avec une... | publish | closed | closed | camille-giroud-santenay-blc-2017 | 2020-06-30 15:55:02 | 2020-06-30 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5770 | 1 | 34.40 | 19 | instock | 18.13 | 0.075670 | 344.00 | 0.224 | 29.0 | 0.416667 | 653.60 | 27.52 | 34.120640 |
| 296 | 15179 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 14:39:13 | 2019-03-13 13:39:13 | Vin | Camille Giroud Auxey-Duresses Blanc 2017 | <div>Ce vin provient de vignes de 2 parcelles ... | publish | closed | closed | camille-giroud-auxey-duresses-blc-2017 | 2020-08-22 11:15:02 | 2020-08-22 09:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5766 | 1 | 35.60 | 4 | instock | 17.66 | 0.119117 | 106.80 | 0.070 | 7.0 | 0.545455 | 142.40 | 28.48 | 37.991573 |
| 297 | 15180 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 15:08:45 | 2019-03-13 14:08:45 | Vin | Camille Giroud Santenay Rouge 2016 | <div>Ce vin provient de vignes situées dans de... | publish | closed | closed | camille-giroud-santenay-rouge-2016 | 2020-08-20 10:25:02 | 2020-08-20 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5772 | 1 | 29.70 | 12 | instock | 15.04 | -0.094497 | 118.80 | 0.077 | 16.0 | 0.285714 | 356.40 | 23.76 | 36.700337 |
| 298 | 15183 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:49:54 | 2019-03-13 13:49:54 | Vin | Camille Giroud Maranges Rouge 1er Cru Le Croix... | <div>Ce vin provient d'une vigne âgée de 70 an... | publish | closed | closed | camille-giroud-maranges-1er-cru-le-croix-moine... | 2020-05-23 14:00:03 | 2020-05-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5768 | 1 | 35.60 | 7 | instock | 18.21 | 0.119117 | 178.00 | 0.116 | 12.0 | 0.526316 | 249.20 | 28.48 | 36.060393 |
| 299 | 15184 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-13 15:05:54 | 2019-03-13 14:05:54 | Vin | Camille Giroud Santenay Rouge 1er Cru Clos Rou... | <div>Ce vin provient de vignes âgées de 70 ans... | publish | closed | closed | camille-giroud-santenay-rge-1er-cru-clos-rouss... | 2020-05-16 15:35:03 | 2020-05-16 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5771 | 1 | 38.40 | 6 | instock | 20.04 | 0.220492 | 115.20 | 0.075 | 9.0 | 0.400000 | 230.40 | 30.72 | 34.765625 |
| 300 | 15185 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-13 14:43:22 | 2019-03-13 13:43:22 | Vin | Camille Giroud Clos de Vougeot 2016 | <div>Ce vin provient de vignes âgées de 50 ans... | publish | closed | closed | camille-giroud-clos-de-vougeot-2016 | 2020-06-11 15:25:04 | 2020-06-11 13:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5767 | 1 | 175.00 | 12 | instock | 90.42 | 5.166184 | 700.00 | 0.456 | 16.0 | 0.285714 | 2100.00 | 140.00 | 35.414286 |
| 301 | 15196 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:04:25 | 2018-04-17 20:04:25 | Vin | Domaine Schoenheitz Pinot Blanc Val Saint Grég... | Jaune paille avec de légers reflets dorés. Bou... | publish | closed | closed | domaine-schoenheitz-pinot-blanc-val-saint-greg... | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4715 | 1 | 11.10 | 23 | instock | 5.91 | -0.767922 | 122.10 | 0.080 | 34.0 | 0.385965 | 255.30 | 8.88 | 33.445946 |
| 302 | 15201 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-06-08 10:08:41 | 2019-06-08 08:08:41 | Vin | Gilles Robin Saint-Joseph Rouge André Péalat 2010 | D'une couleur intense, elle dévoile des arômes... | publish | closed | closed | gilles-robin-saint-joseph-pealat-2010 | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6109 | 1 | 39.20 | 17 | instock | 21.06 | 0.249457 | 352.80 | 0.230 | 26.0 | 0.418605 | 666.40 | 31.36 | 32.844388 |
| 303 | 15202 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-11-26 10:08:20 | 2018-11-26 09:08:20 | Vin | Thierry Germain Saumur-Champigny Cuvée Domaine... | Cette cuvée se présente au nez comme en bouche... | publish | closed | closed | thierry-germain-saumur-champigny-domaine-2018 | 2020-08-27 09:30:08 | 2020-08-27 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5546 | 1 | 15.20 | 18 | instock | 7.93 | -0.619479 | 106.40 | 0.069 | 25.0 | 0.325581 | 273.60 | 12.16 | 34.786184 |
| 304 | 15204 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-18 10:54:27 | 2020-01-18 09:54:27 | Vin | Thierry Germain Saumur-Champigny La Marginale ... | La robe est d’une belle couleur rubis intense ... | publish | closed | closed | thierry-germain-saumur-champigny-la-marginale-... | 2020-06-18 10:45:04 | 2020-06-18 08:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6621 | 1 | 35.20 | 7 | instock | 17.46 | 0.104634 | 140.80 | 0.092 | 11.0 | 0.444444 | 246.40 | 28.16 | 37.997159 |
| 305 | 15205 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-18 10:54:29 | 2020-01-18 09:54:29 | Vin | Thierry Germain Saumur-Champigny Les Mémoires ... | La robe est d’un rouge rubis intense, dense et... | publish | closed | closed | thierry-germain-saumur-champigny-les-memoires-... | 2020-01-18 11:00:03 | 2020-01-18 10:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6622 | 1 | 42.20 | 16 | instock | 22.02 | 0.358074 | 337.60 | 0.220 | 24.0 | 0.400000 | 675.20 | 33.76 | 34.774882 |
| 306 | 15206 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:47:54 | 2018-04-17 07:47:54 | Vin | Thierry Germain Saumur Blanc L'Insolite 2018 | <div class="row">\n<div class="features-value ... | publish | closed | closed | thierry-germain-saumur-blanc-linsolite-2018 | 2020-08-04 09:30:07 | 2020-08-04 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4650 | 1 | 25.30 | 20 | instock | 13.07 | -0.253802 | 227.70 | 0.148 | 29.0 | 0.367347 | 506.00 | 20.24 | 35.424901 |
| 307 | 15213 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 10:23:45 | 2018-02-16 09:23:45 | Vin | Domaine de l'Ecu Muscadet Classic 2018 | Robe jaune paille, cristalline. Nez mêlant des... | publish | closed | closed | ecu-muscadet-classic-2018 | 2020-07-10 09:30:08 | 2020-07-10 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4216 | 1 | 13.40 | 35 | instock | 7.20 | -0.684649 | 174.20 | 0.114 | 48.0 | 0.313253 | 469.00 | 10.72 | 32.835821 |
| 308 | 15227 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-04 15:36:52 | 2019-04-04 13:36:52 | Whisky | Kingsbarns Distillery Lowland Single Malt Whisky | <span title="">Dream to Dram, un caractère rem... | publish | closed | closed | whisky-kingsbarns-lowland-single-malt | 2019-12-07 17:50:03 | 2019-12-07 16:50:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5912 | 1 | 57.00 | 4 | instock | 25.08 | 0.893917 | 114.00 | 0.074 | 6.0 | 0.400000 | 228.00 | 45.60 | 45.000000 |
| 309 | 15229 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-07 17:23:29 | 2018-06-07 15:23:29 | Vin | Château La Tour l'Aspic Pauillac 2014 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-la-tour-laspic-pauillac-2014 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4980 | 1 | 26.50 | 18 | instock | 14.10 | -0.210355 | 212.00 | 0.138 | 26.0 | 0.363636 | 477.00 | 21.20 | 33.490566 |
| 310 | 15237 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-26 17:42:31 | 2019-03-26 16:42:31 | Vin | Maison Trimbach Riesling 2017 | Son bouquet délicat, le bel équilibre entre so... | publish | closed | closed | maison-trimbach-riesling-2017 | 2020-08-20 09:30:08 | 2020-08-20 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5816 | 1 | 16.90 | 32 | instock | 8.73 | -0.557929 | 185.90 | 0.121 | 43.0 | 0.293333 | 540.80 | 13.52 | 35.428994 |
| 311 | 15238 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-26 17:31:09 | 2019-03-26 16:31:09 | Vin | Maison Trimbach Muscat Réserve 2017 | Un vin sec, au fruité prononcé, et au bouquet ... | publish | closed | closed | trimbach-muscat-reserve-2017 | 2020-07-24 09:45:03 | 2020-07-24 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5815 | 1 | 16.60 | 26 | instock | 9.01 | -0.568791 | 149.40 | 0.097 | 35.0 | 0.295082 | 431.60 | 13.28 | 32.153614 |
| 312 | 15240 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-03-26 18:00:36 | 2019-03-26 17:00:36 | Vin | Maison Trimbach Riesling Cuvée Frédéric Emile ... | Exposés sud et sud-est, les terroirs Grands Cr... | publish | closed | closed | maison-trimbach-riesling-cuvee-frederic-emile-... | 2020-06-27 16:15:02 | 2020-06-27 14:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5820 | 1 | 63.50 | 7 | instock | 32.48 | 1.129254 | 381.00 | 0.248 | 13.0 | 0.600000 | 444.50 | 50.80 | 36.062992 |
| 313 | 15241 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-03-26 17:54:19 | 2019-03-26 16:54:19 | Vin | Maison Trimbach Riesling Grand Cru Schlossberg... | <div class="wpb_text_column wpb_content_elemen... | publish | closed | closed | maison-trimbach-riesling-grand-cru-schlossberg... | 2020-05-20 17:25:02 | 2020-05-20 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5818 | 1 | 63.50 | 2 | instock | 32.48 | 1.129254 | 63.50 | 0.041 | 3.0 | 0.400000 | 127.00 | 50.80 | 36.062992 |
| 314 | 15254 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-03-13 14:56:23 | 2019-03-13 13:56:23 | Vin | Camille Giroud Marsannay Rouge Les Longeroies ... | <div>Ce vin provient de vignes situées à Marsa... | publish | closed | closed | camille-giroud-marsannay-longeroies-2016 | 2019-07-22 09:34:50 | 2019-07-22 07:34:50 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5769 | 1 | 33.60 | 6 | instock | 16.49 | 0.046705 | 168.00 | 0.110 | 11.0 | 0.588235 | 201.60 | 26.88 | 38.653274 |
| 315 | 15256 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-03-10 14:09:42 | 2020-03-10 13:09:42 | Vin | Château Simone Palette Rouge 2015 | Les vins rouges, d’une grande distinction, pré... | publish | closed | closed | chateau-simone-palette-rouge-2015 | 2020-07-30 09:30:09 | 2020-07-30 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6753 | 1 | 46.50 | 6 | instock | 22.82 | 0.513758 | 186.00 | 0.121 | 10.0 | 0.500000 | 279.00 | 37.20 | 38.655914 |
| 316 | 15261 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 14:53:33 | 2018-02-16 13:53:33 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil La C... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | cotelleraie-saint-nicolas-croisee-2018 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4227 | 1 | 12.60 | 24 | instock | 6.77 | -0.713613 | 100.80 | 0.066 | 32.0 | 0.285714 | 302.40 | 10.08 | 32.837302 |
| 317 | 15264 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-03-13 15:12:41 | 2019-03-13 14:12:41 | Vin | Decelle-Villa Auxey-Duresses Blanc 2017 | C’est une rareté ! L’Auxey-Duresses blanc alli... | publish | closed | closed | decelle-villa-auxey-blanc-2017 | 2020-04-28 15:25:02 | 2020-04-28 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5773 | 1 | 32.80 | 9 | instock | 17.79 | 0.017741 | 229.60 | 0.150 | 16.0 | 0.560000 | 295.20 | 26.24 | 32.202744 |
| 318 | 15269 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-12 10:16:27 | 2018-02-12 09:16:27 | Vin | Pierre Gaillard Côte Rôtie Rose Pourpre 2017 | La cuvée "Rose Pourpre" provient d'une parcell... | publish | closed | closed | pierre-gaillard-cote-rotie-rose-pourpre-2017 | 2020-08-24 14:00:03 | 2020-08-24 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4046 | 1 | 80.00 | 2 | instock | 40.92 | 1.726647 | 160.00 | 0.104 | 4.0 | 0.666667 | 160.00 | 64.00 | 36.062500 |
| 319 | 15280 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 15:53:22 | 2018-04-17 13:53:22 | Vin | Domaine Rotier Gaillac Blanc Doux Les Gravels ... | C'est un vin au fruité intense ou se mêlent fr... | publish | closed | closed | domaine-rotier-gaillac-blanc-doux-les-gravels-... | 2020-08-08 11:35:02 | 2020-08-08 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4676 | 1 | 12.90 | 28 | instock | 6.93 | -0.702752 | 141.90 | 0.093 | 39.0 | 0.328358 | 361.20 | 10.32 | 32.848837 |
| 320 | 15281 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 16:06:47 | 2018-04-17 14:06:47 | Vin | Domaine Rotier Gaillac Rouge L'Ame 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-lame-2016 | 2020-01-04 17:07:41 | 2020-01-04 16:07:41 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4678 | 1 | 29.80 | 31 | instock | 15.09 | -0.090876 | 268.20 | 0.175 | 40.0 | 0.253521 | 923.80 | 23.84 | 36.703020 |
| 321 | 15282 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 15:56:56 | 2018-04-17 13:56:56 | Vin | Domaine Rotier Gaillac Rouge Les Gravels 2016 | D'une couleur pourpre sombre, ce vin offre dan... | publish | closed | closed | domaine-rotier-gaillac-rouge-les-gravels-2016 | 2020-08-25 09:30:07 | 2020-08-25 07:30:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4677 | 1 | 9.50 | 25 | instock | 4.91 | -0.825851 | 85.50 | 0.056 | 34.0 | 0.305085 | 237.50 | 7.60 | 35.394737 |
| 322 | 15283 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:09:58 | 2018-04-17 14:09:58 | Vin | Domaine Rotier Gaillac Rouge Renaissance 2016 | Dans sa jeunesse, le vin présente une couleur ... | publish | closed | closed | domaine-rotier-gaillac-rouge-renaissance-2016 | 2020-07-15 17:45:02 | 2020-07-15 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4679 | 1 | 13.20 | 32 | instock | 6.55 | -0.691890 | 158.40 | 0.103 | 44.0 | 0.315789 | 422.40 | 10.56 | 37.973485 |
| 323 | 15292 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:43:33 | 2018-02-28 12:43:33 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017-2 | 2020-08-27 10:24:18 | 2020-08-27 08:24:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4288 | 1 | 26.70 | 26 | instock | 14.48 | -0.203114 | 213.60 | 0.139 | 34.0 | 0.266667 | 694.20 | 21.36 | 32.209738 |
| 324 | 15296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-08 13:49:41 | 2018-02-08 12:49:41 | Vin | Pierre Jean Villa Saint-Joseph Rouge Tildé 2017 | Les vieilles vignes lui apportent une rare pro... | publish | closed | closed | pierre-jean-villa-saint-joseph-tilde-2017 | 2019-12-21 09:00:17 | 2019-12-21 08:00:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3849 | 1 | 34.30 | 10 | instock | 17.54 | 0.072049 | 308.70 | 0.201 | 19.0 | 0.620690 | 343.00 | 27.44 | 36.078717 |
| 325 | 15298 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-08 12:58:52 | 2018-02-08 11:58:52 | Vin | Pierre Jean Villa Saint-Joseph Préface 2018 | Il exhale un nez subtil, racé avec du poivre f... | publish | closed | closed | pierre-jean-villa-saint-joseph-preface-2018 | 2019-12-30 09:30:29 | 2019-12-30 08:30:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3847 | 1 | 24.20 | 16 | instock | 12.88 | -0.293628 | 145.20 | 0.095 | 22.0 | 0.315789 | 387.20 | 19.36 | 33.471074 |
| 326 | 15300 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-08 14:08:36 | 2018-02-08 13:08:36 | Vin | Pierre Jean Villa Crozes-Hermitage Accroche Co... | Dentelle de fruit de jeunes syrah, aux tanins ... | publish | closed | closed | pierre-jean-villa-croze-hermitage-accroche-coe... | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 3850 | 1 | 20.80 | 0 | outofstock | 10.64 | -0.416727 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 16.64 | 36.057692 |
| 327 | 15303 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 09:13:35 | 2018-02-12 08:13:35 | Vin | Pierre Jean Villa Saint-Joseph Saut De l'Ange ... | Roussanne finement exotique, atypique par sa v... | publish | closed | closed | pierre-jean-villa-saint-joseph-saut-ange-2018 | 2019-11-02 13:25:07 | 2019-11-02 12:25:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4040 | 1 | 34.30 | 12 | instock | 18.25 | 0.072049 | 240.10 | 0.157 | 19.0 | 0.451613 | 411.60 | 27.44 | 33.491254 |
| 328 | 15306 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-16 14:22:18 | 2018-02-16 13:22:18 | Vin | Pierre Martin Sancerre Chavignol Rouge 2017 | Sancerre avec de la richesse et une palette ex... | publish | closed | closed | pierre-martin-sancerre-rouge-2017 | 2020-07-13 09:30:08 | 2020-07-13 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4224 | 1 | 17.20 | 21 | instock | 8.53 | -0.547067 | 154.80 | 0.101 | 30.0 | 0.352941 | 361.20 | 13.76 | 38.008721 |
| 329 | 15307 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 12:49:00 | 2018-05-03 10:49:00 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rouge-2017 | 2020-08-26 18:25:02 | 2020-08-26 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4861 | 1 | 8.50 | 36 | instock | 4.17 | -0.862056 | 127.50 | 0.083 | 51.0 | 0.344828 | 306.00 | 6.80 | 38.676471 |
| 330 | 15310 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-20 10:07:41 | 2018-02-20 09:07:41 | Vin | Parcé Frères Côtes du Roussillon Villages Zoé ... | Nez de fruits noirs et d'épices. La bouche du ... | publish | closed | closed | parce-freres-cotes-roussillon-zoe-rouge-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4242 | 1 | 8.60 | 30 | instock | 4.22 | -0.858436 | 120.40 | 0.079 | 44.0 | 0.378378 | 258.00 | 6.88 | 38.662791 |
| 331 | 15315 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 21:33:24 | 2018-04-18 19:33:24 | Vin | Domaine de Montgilet Anjou Blanc 2016 | Sec et gras, cet Anjou blanc s’illustre autant... | publish | closed | closed | domaine-de-montgilet-anjou-blanc-2016 | 2020-05-26 15:35:03 | 2020-05-26 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4749 | 1 | 11.90 | 38 | instock | 6.46 | -0.738957 | 142.80 | 0.093 | 50.0 | 0.272727 | 452.20 | 9.52 | 32.142857 |
| 332 | 15316 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-19 13:59:04 | 2018-04-19 11:59:04 | Vin | Maurice Schoech Pinot Noir 2018 | Un Pinot Noir sur le fruit avec une couleur ch... | publish | closed | closed | maurice-schoech-pinot-noir-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4789 | 1 | 11.10 | 27 | instock | 5.96 | -0.767922 | 88.80 | 0.058 | 35.0 | 0.258065 | 299.70 | 8.88 | 32.882883 |
| 333 | 15318 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-04-25 09:47:47 | 2019-04-25 07:47:47 | Vin | I Fabbri Chianti Classico Gran Selezione 2015 | Le Gran Selezione est le résultat des meilleur... | publish | closed | closed | i-fabbri-chianti-classico-gran-selezione-2015 | 2020-08-24 16:25:02 | 2020-08-24 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6038 | 1 | 48.50 | 0 | outofstock | 25.31 | 0.586169 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 38.80 | 34.768041 |
| 334 | 15324 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-26 10:44:28 | 2019-07-26 08:44:28 | Vin | Planeta Sicilia Chardonnay 2017 | Une version 100% sicilienne du chardonnay. Un ... | publish | closed | closed | planeta-sicilia-chardonnay-2017 | 2020-07-30 11:35:02 | 2020-07-30 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6223 | 1 | 26.70 | 17 | instock | 13.80 | -0.203114 | 160.20 | 0.104 | 23.0 | 0.300000 | 453.90 | 21.36 | 35.393258 |
| 335 | 15325 | 0 | 0 | 0 | 0.0 | 20.0 | taxable | 2.0 | 2019-03-27 17:59:49 | 2019-03-27 16:59:49 | Vin | Agnès Levet Côte Rôtie Améthyste 2017 | <span style="float: none;background-color: tra... | publish | closed | closed | agnes-levet-amethyste-2017 | 2020-05-21 14:00:02 | 2020-05-21 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5826 | 1 | 41.20 | 34 | instock | 21.71 | 0.321868 | 824.00 | 0.537 | 54.0 | 0.454545 | 1400.80 | 32.96 | 34.132282 |
| 336 | 15328 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-03-27 18:05:09 | 2019-03-27 17:05:09 | Vin | Agnès Levet Côte Rôtie Maestria 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-maestria-2017 | 2020-07-25 15:45:02 | 2020-07-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5827 | 1 | 55.00 | 4 | instock | 29.55 | 0.821506 | 110.00 | 0.072 | 6.0 | 0.400000 | 220.00 | 44.00 | 32.840909 |
| 337 | 15329 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-03-27 18:28:15 | 2019-03-27 17:28:15 | Vin | Agnès Levet Côte Rôtie Péroline 2017 | <span style="float: none; background-color: tr... | publish | closed | closed | agnes-levet-cote-rotie-peroline-2017 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5829 | 1 | 57.00 | 5 | instock | 29.74 | 0.893917 | 171.00 | 0.112 | 8.0 | 0.461538 | 285.00 | 45.60 | 34.780702 |
| 338 | 15337 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 13:45:08 | 2018-05-17 11:45:08 | Vin | Oratoire Saint Martin Cairanne Blanc Haut-Cous... | Dans sa version blanc, le Cairanne Haut Cousti... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-haut-cous... | 2020-08-13 18:45:02 | 2020-08-13 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4940 | 1 | 20.50 | 39 | instock | 11.02 | -0.427589 | 246.00 | 0.160 | 51.0 | 0.266667 | 799.50 | 16.40 | 32.804878 |
| 339 | 15338 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 13:41:23 | 2018-05-17 11:41:23 | Vin | Oratoire Saint Martin Cairanne Blanc Réserve d... | Cette cuvée de Cairanne blanc s'exprime sur la... | publish | closed | closed | oratoire-saint-martin-cairanne-blanc-reserve-d... | 2020-03-03 09:30:09 | 2020-03-03 08:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4939 | 1 | 12.90 | 23 | instock | 6.53 | -0.702752 | 90.30 | 0.059 | 30.0 | 0.264151 | 296.70 | 10.32 | 36.724806 |
| 340 | 15339 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 11:39:19 | 2018-02-13 10:39:19 | Vin | Zind-Humbrecht Pinot Gris Roche Calcaire 2017 | Nez minéral sur le caillou, fumé discret sur u... | publish | closed | closed | zind-humbrecht-pinot-gris-roche-calcaire-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4130 | 1 | 23.00 | 16 | instock | 12.48 | -0.337075 | 161.00 | 0.105 | 23.0 | 0.358974 | 368.00 | 18.40 | 32.173913 |
| 341 | 15341 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-13 11:54:31 | 2018-02-13 10:54:31 | Vin | Zind-Humbrecht Zind 2017 | Le Zind est traditionnellement composé d’un as... | publish | closed | closed | zind-humbrecht-vdf-zind-2017 | 2020-07-28 15:05:02 | 2020-07-28 13:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4138 | 1 | 25.70 | 0 | outofstock | 13.01 | -0.239319 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 20.56 | 36.721790 |
| 342 | 15342 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-04-25 09:34:44 | 2019-04-25 07:34:44 | Vin | Zind-Humbrecht Muscat Turckheim 2016 | Le nez est délicat, déjà bien ouvert, dévoilan... | publish | closed | closed | zind-humbrecht-muscat-turckheim-2016 | 2020-07-28 16:45:03 | 2020-07-28 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6035 | 1 | 17.90 | 13 | instock | 9.34 | -0.521723 | 107.40 | 0.070 | 19.0 | 0.375000 | 232.70 | 14.32 | 34.776536 |
| 343 | 15343 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-04-06 09:59:39 | 2019-04-06 07:59:39 | Vin | Albert Mann Pinot Noir Clos de la Faille 2017 | La robe est rouge cerise. Le nez est expressif... | publish | closed | closed | albert-mann-pinot-noir-clos-de-la-faille-2017 | 2020-08-05 14:35:03 | 2020-08-05 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5922 | 1 | 48.50 | 4 | instock | 24.31 | 0.586169 | 194.00 | 0.127 | 8.0 | 0.666667 | 194.00 | 38.80 | 37.345361 |
| 344 | 15344 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-07-31 11:55:32 | 2018-07-31 09:55:32 | Vin | Albert Mann Pinot Noir Les Saintes Claires 2017 | La robe est rouge cerise et assez profonde. Le... | publish | closed | closed | albert-mann-pinot-noir-les-saintes-claires-2017 | 2020-07-21 13:09:48 | 2020-07-21 11:09:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5069 | 1 | 65.00 | 14 | instock | 35.26 | 1.183563 | 455.00 | 0.297 | 21.0 | 0.400000 | 910.00 | 52.00 | 32.192308 |
| 345 | 15345 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 11:52:58 | 2018-07-31 09:52:58 | Vin | Albert Mann Pinot Noir Grand P 2017 | Le Grand P provient est élevé sur le Grand Cru... | publish | closed | closed | albert-mann-pinot-noir-grand-p-2017 | 2020-06-26 18:15:03 | 2020-06-26 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5068 | 1 | 59.90 | 6 | instock | 32.50 | 0.998914 | 179.70 | 0.117 | 9.0 | 0.400000 | 359.40 | 47.92 | 32.178631 |
| 346 | 15346 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-07-31 11:49:05 | 2018-07-31 09:49:05 | Vin | Albert Mann Pinot Noir Grand H 2017 | La robe est profonde, de couleur rouge grenat.... | publish | closed | closed | albert-mann-pinot-noir-grand-h-2017 | 2020-02-13 17:00:01 | 2020-02-13 16:00:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5067 | 1 | 59.90 | 3 | instock | 30.95 | 0.998914 | 1317.80 | 0.859 | 25.0 | 1.571429 | 179.70 | 47.92 | 35.413189 |
| 347 | 15349 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 21:17:02 | 2018-04-17 19:17:02 | Vin | Albert Mann Muscat 2018 | La robe est jaune claire. Le vin développe un ... | publish | closed | closed | albert-mann-muscat-2018 | 2020-08-14 18:25:02 | 2020-08-14 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4706 | 1 | 16.80 | 0 | outofstock | 8.68 | -0.561550 | 168.00 | 0.110 | 10.0 | 2.000000 | 0.00 | 13.44 | 35.416667 |
| 348 | 15351 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-04-06 10:14:45 | 2019-04-06 08:14:45 | Vin | Albert Mann Riesling Grand Cru Furstentum 2017 | Une belle robe jaune dominante avec de nombreu... | publish | closed | closed | albert-mann-riesling-grand-cru-furstentum | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5925 | 1 | 49.50 | 15 | instock | 25.06 | 0.622375 | 396.00 | 0.258 | 23.0 | 0.421053 | 742.50 | 39.60 | 36.717172 |
| 349 | 15353 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:56:04 | 2018-02-13 09:56:04 | Vin | Zind-Humbrecht Riesling Herrenweg de Turckheim... | Le nez est tout en finesse, encore contenu et ... | publish | closed | closed | zind-humbrecht-riesling-herrenweg-turckheim-2017 | 2020-06-03 14:35:02 | 2020-06-03 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4108 | 1 | 31.70 | 13 | instock | 16.54 | -0.022085 | 221.90 | 0.145 | 20.0 | 0.424242 | 412.10 | 25.36 | 34.779180 |
| 350 | 15360 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-31 13:42:46 | 2019-01-31 12:42:46 | Vin | Domaine Huet Vouvray Pétillant Brut 2014 | Un Pétillant élégant, produit de la rencontre ... | publish | closed | closed | domaine-huet-vouvray-petillant-2014 | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5705 | 1 | 19.80 | 23 | instock | 9.82 | -0.452933 | 138.60 | 0.090 | 30.0 | 0.264151 | 455.40 | 15.84 | 38.005051 |
| 351 | 15361 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:01:10 | 2018-04-17 20:01:10 | Vin | Domaine Schoenheitz Muscat 2017 | Jaune pâle à reflets argentés. Nez particulièr... | publish | closed | closed | domaine-schoenheitz-muscat-2017 | 2020-07-27 14:25:03 | 2020-07-27 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4714 | 1 | 13.30 | 26 | instock | 7.22 | -0.688269 | 172.90 | 0.113 | 39.0 | 0.400000 | 345.80 | 10.64 | 32.142857 |
| 352 | 15369 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-02-15 14:11:24 | 2019-02-15 13:11:24 | Vin | Triennes IGP Méditerranée Rouge Les Auréliens ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-aureliens-2016 | 2020-08-22 16:05:02 | 2020-08-22 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5737 | 1 | 11.00 | 25 | instock | 5.57 | -0.771542 | 88.00 | 0.057 | 33.0 | 0.275862 | 275.00 | 8.80 | 36.704545 |
| 353 | 15373 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 15:04:36 | 2018-02-13 14:04:36 | Vin | Planeta Sicilia La Segreta Rosso 2017 | Au nez des arômes de cassis et de mûre avec un... | publish | closed | closed | planeta-sicilia-la-segreta-rosso-2017 | 2020-08-01 14:15:03 | 2020-08-01 12:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4160 | 1 | 9.30 | 36 | instock | 4.85 | -0.833092 | 102.30 | 0.067 | 47.0 | 0.265060 | 334.80 | 7.44 | 34.811828 |
| 354 | 15375 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 15:09:20 | 2018-02-13 14:09:20 | Vin | Planeta Sicilia Plumbago 2017 | Plumbago est dominé par des arômes de prunes m... | publish | closed | closed | planeta-sicilia-plumbago-2017 | 2020-03-13 09:30:12 | 2020-03-13 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4161 | 1 | 11.60 | 36 | instock | 5.81 | -0.749819 | 139.20 | 0.091 | 48.0 | 0.285714 | 417.60 | 9.28 | 37.392241 |
| 355 | 15378 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 09:51:50 | 2018-02-13 08:51:50 | Vin | Paul Ginglinger Pinot Noir Les Rocailles 2016 | Les Rocailles provient d’une parcelle du lieu-... | publish | closed | closed | paul-ginglinger-pinot-noir-les-rocailles-2016 | 2020-08-25 14:00:03 | 2020-08-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4098 | 1 | 22.10 | 17 | instock | 10.96 | -0.369660 | 176.80 | 0.115 | 25.0 | 0.380952 | 375.70 | 17.68 | 38.009050 |
| 356 | 15382 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-02-13 11:08:45 | 2018-02-13 10:08:45 | Vin | Zind-Humbrecht Riesling Grand Cru Rangen De Th... | Le nez est puissant, dominant, riche, sur la f... | publish | closed | closed | zind-humbrecht-riesling-gc-rangen-thann-clos-s... | 2020-02-08 11:45:02 | 2020-02-08 10:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4115 | 1 | 100.00 | 12 | instock | 52.70 | 2.450760 | 100.00 | 0.065 | 13.0 | 0.080000 | 1200.00 | 80.00 | 34.125000 |
| 357 | 15399 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 11:29:23 | 2019-03-19 10:29:23 | Vin | Château Peymartin Saint-Julien 2014 | Second vin du Château Gloria. Produit à partir... | publish | closed | closed | peymartin-saint-julien-2014 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5802 | 1 | 23.80 | 34 | instock | 12.54 | -0.308110 | 261.80 | 0.171 | 45.0 | 0.278481 | 809.20 | 19.04 | 34.138655 |
| 358 | 15402 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 10:45:13 | 2018-04-17 08:45:13 | Vin | La Cotelleraie Saint-Nicolas-de-Bourgueil Le V... | Les expressions du terroir de Saint Nicolas de... | publish | closed | closed | la-cotelleraie-saint-nicolas-de-bourgueil-le-v... | 2020-08-06 14:45:02 | 2020-08-06 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4664 | 1 | 16.40 | 20 | instock | 8.39 | -0.576032 | 147.60 | 0.096 | 29.0 | 0.367347 | 328.00 | 13.12 | 36.051829 |
| 359 | 15403 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-16 15:21:11 | 2018-02-16 14:21:11 | Vin | Mérieau Touraine L'Arpent des Vaudons 2018 | Sa robe est jaune pâle aux reflets argentés. C... | publish | closed | closed | merieau-touraine-arpent-vaudons-2018 | 2020-08-06 09:30:09 | 2020-08-06 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4229 | 1 | 9.60 | 28 | instock | 4.96 | -0.822230 | 105.60 | 0.069 | 39.0 | 0.328358 | 268.80 | 7.68 | 35.416667 |
| 360 | 15404 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 11:00:54 | 2018-04-17 09:00:54 | Vin | Vincent Carême Vouvray Sec 2018 | Le Sec est issu d'un terroir d'argile à silex.... | publish | closed | closed | vincent-careme-vouvray-sec-2018 | 2020-08-05 09:30:19 | 2020-08-05 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4665 | 1 | 14.40 | 39 | instock | 7.59 | -0.648443 | 187.20 | 0.122 | 52.0 | 0.285714 | 561.60 | 11.52 | 34.114583 |
| 361 | 15413 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-15 14:49:25 | 2018-02-15 13:49:25 | Vin | Mas Laval Terrasses du Larzac La Grande Cuvée ... | Sa couleur profonde nous invite à découvrir de... | publish | closed | closed | mas-laval-terrasse-larzac-grande-cuvee-2016 | 2020-07-29 11:10:20 | 2020-07-29 09:10:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4205 | 1 | 23.00 | 12 | instock | 11.65 | -0.337075 | 138.00 | 0.090 | 18.0 | 0.400000 | 276.00 | 18.40 | 36.684783 |
| 362 | 15414 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 14:40:54 | 2018-02-15 13:40:54 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Rouge... | Fruité, gouleyant et aérien, ce vin à des tani... | publish | closed | closed | mas-laval-igp-pays-dherault-les-pampres-rouges... | 2020-08-21 15:15:02 | 2020-08-21 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4204 | 1 | 11.30 | 50 | instock | 5.96 | -0.760681 | 169.50 | 0.111 | 65.0 | 0.260870 | 565.00 | 9.04 | 34.070796 |
| 363 | 15415 | 0 | 0 | 0 | 0.0 | 27.0 | taxable | 2.0 | 2018-02-15 14:33:42 | 2018-02-15 13:33:42 | Vin | Mas Laval IGP Pays d'Hérault Les Pampres Blanc... | Vin de gourmandise à boire sur la fraîcheur po... | publish | closed | closed | mas-laval-igp-pays-herault-pampres-blanc-2018 | 2020-07-11 16:45:03 | 2020-07-11 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4203 | 1 | 9.90 | 74 | instock | 5.01 | -0.811369 | 267.30 | 0.174 | 101.0 | 0.308571 | 732.60 | 7.92 | 36.742424 |
| 364 | 15425 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-17 12:26:25 | 2018-05-17 10:26:25 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe rouge rubis soutenu. Nez intense de petit... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4927 | 1 | 6.50 | 39 | instock | 3.29 | -0.934468 | 84.50 | 0.055 | 52.0 | 0.285714 | 253.50 | 5.20 | 36.730769 |
| 365 | 15426 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-11 13:32:19 | 2018-04-11 11:32:19 | Vin | Domaine de Montcalmès Terrasses du Larzac Roug... | Sur le millésime 2017, le domaine de Montcalmè... | publish | closed | closed | montcalmes-larzac-rouge-2017 | 2020-08-26 09:30:08 | 2020-08-26 07:30:08 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4558 | 1 | 28.10 | 23 | instock | 15.24 | -0.152426 | 252.90 | 0.165 | 32.0 | 0.327273 | 646.30 | 22.48 | 32.206406 |
| 366 | 15428 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:40:13 | 2018-02-20 09:40:13 | Vin | Domaine Saint-Denis Mâcon Lugny 2017 | Un très joli Mâcon sur la fraîcheur, net et éq... | publish | closed | closed | st-denis-macon-lugny-2017 | 2020-08-10 09:30:09 | 2020-08-10 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4246 | 1 | 15.30 | 29 | instock | 8.14 | -0.615858 | 137.70 | 0.090 | 38.0 | 0.268657 | 443.70 | 12.24 | 33.496732 |
| 367 | 15429 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-18 21:49:35 | 2018-04-18 19:49:35 | Vin | Domaine de Montgilet Coteaux de l'Aubance 2017 | Ce Coteaux de l'Aubance ne cherche pas la conc... | publish | closed | closed | domaine-de-montgilet-coteaux-de-laubance-2017 | 2020-08-22 09:00:10 | 2020-08-22 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4753 | 1 | 12.00 | 23 | instock | 6.51 | -0.735337 | 120.00 | 0.078 | 33.0 | 0.357143 | 276.00 | 9.60 | 32.187500 |
| 368 | 15432 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2019-04-17 09:26:12 | 2019-04-17 07:26:12 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 2016 | Ce Granit rouge dévoile une robe rouge sombre ... | publish | closed | closed | domaine-de-vaccelli-ajaccio-rouge-granit-2016 | 2020-07-11 16:35:03 | 2020-07-11 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5950 | 1 | 46.00 | 4 | instock | 24.72 | 0.495655 | 138.00 | 0.090 | 7.0 | 0.545455 | 184.00 | 36.80 | 32.826087 |
| 369 | 15434 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:42:17 | 2020-01-04 10:42:17 | Vin | La Préceptorie Côtes du Roussillon Blanc Terre... | La robe pâle aux reflets verts dévoile un nez ... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-blanc-terre... | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6585 | 1 | 19.00 | 29 | instock | 10.31 | -0.481897 | 190.00 | 0.124 | 39.0 | 0.294118 | 551.00 | 15.20 | 32.171053 |
| 370 | 15436 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 09:49:21 | 2018-02-20 08:49:21 | Vin | Domaine Augustin Collioure Rouge Adéodat 2017 | <div class="m-product_description"></div>\n<di... | publish | closed | closed | domaine-augustin-collioure-rouge-adeodat-2017 | 2020-08-26 09:30:09 | 2020-08-26 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4240 | 1 | 28.00 | 29 | instock | 14.47 | -0.156046 | 252.00 | 0.164 | 38.0 | 0.268657 | 812.00 | 22.40 | 35.401786 |
| 371 | 15440 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:46:08 | 2018-02-12 13:46:08 | Vin | Domaine des Bosquets Gigondas 2016 | Charismatique et envoûtant, minéral, garrigues... | publish | closed | closed | bosquets-gigondas-2016 | 2020-08-22 17:55:02 | 2020-08-22 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4077 | 1 | 22.90 | 34 | instock | 11.95 | -0.340695 | 274.80 | 0.179 | 46.0 | 0.300000 | 778.60 | 18.32 | 34.770742 |
| 372 | 15441 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 11:47:07 | 2018-02-15 10:47:07 | Vin | Château de La Liquière Faugères 2017 | <div class="row">\n<div class="features-value ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-rouge-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4194 | 1 | 10.80 | 29 | instock | 5.58 | -0.778783 | 151.20 | 0.099 | 43.0 | 0.388889 | 313.20 | 8.64 | 35.416667 |
| 373 | 15444 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:02:17 | 2018-02-12 13:02:17 | Vin | Gilles Robin Crozes-Hermitage Blanc Les Marell... | "Les Marelles" offre des notes de fruits blanc... | publish | closed | closed | gilles-robin-crozes-hermitage-marelles-2018 | 2020-08-27 09:30:09 | 2020-08-27 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4070 | 1 | 23.40 | 32 | instock | 12.21 | -0.322592 | 234.00 | 0.153 | 42.0 | 0.270270 | 748.80 | 18.72 | 34.775641 |
| 374 | 15448 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:48:57 | 2018-04-19 11:48:57 | Vin | Maurice Schoech Pinot Auxerrois Vieilles Vigne... | Il fait parti des premiers raisins vendangés e... | publish | closed | closed | maurice-schoech-pinot-auxerrois-2018 | 2020-06-23 18:45:02 | 2020-06-23 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4785 | 1 | 10.10 | 20 | instock | 4.96 | -0.804127 | 90.90 | 0.059 | 29.0 | 0.367347 | 202.00 | 8.08 | 38.613861 |
| 375 | 15452 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-13 15:15:26 | 2018-04-13 13:15:26 | Vin | Gilbert Picq Chablis Vosgros 1er Cru 2017 | Le nez fleure bon l'herbe fraîche, le citron v... | publish | closed | closed | gilbert-picq-chablis-vosgros-1er-cru-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4611 | 1 | 26.20 | 29 | instock | 13.67 | -0.221217 | 288.20 | 0.188 | 40.0 | 0.318841 | 759.80 | 20.96 | 34.780534 |
| 376 | 15456 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-17 12:20:36 | 2018-05-17 10:20:36 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe jaune doré aux reflets brillants. Nez dot... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-08-20 09:30:09 | 2020-08-20 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4926 | 1 | 7.90 | 40 | instock | 4.04 | -0.883780 | 118.50 | 0.077 | 55.0 | 0.315789 | 316.00 | 6.32 | 36.075949 |
| 377 | 15457 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-12 10:14:12 | 2018-04-12 08:14:12 | Vin | Domaine de Montcalmès Coteaux du Languedoc Bla... | Un jus dense et abricoté, des notes de miel, d... | publish | closed | closed | domaine-de-montcalmes-ct-languedoc-blanc-2017 | 2020-06-26 09:30:10 | 2020-06-26 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4566 | 1 | 28.50 | 19 | instock | 15.31 | -0.137944 | 228.00 | 0.149 | 27.0 | 0.347826 | 541.50 | 22.80 | 32.850877 |
| 378 | 15461 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-16 15:39:34 | 2018-02-16 14:39:34 | Vin | Argentine Mendoza Alamos Malbec 2018 | Nez très complexe et puissant de fruits noirs,... | publish | closed | closed | catena-zapata-mendoza-alamos-malbec-2018 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4231 | 1 | 11.10 | 22 | instock | 5.85 | -0.767922 | 111.00 | 0.072 | 32.0 | 0.370370 | 244.20 | 8.88 | 34.121622 |
| 379 | 15462 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-06 10:45:03 | 2018-09-06 08:45:03 | Vin | Chili Valdivieso Merlot 2017 | Une robe d'un joli rouge sombre, un nez très f... | publish | closed | closed | chili-valdivieso-merlot-2017 | 2020-06-02 10:45:02 | 2020-06-02 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5394 | 1 | 10.70 | 29 | instock | 5.25 | -0.782404 | 96.30 | 0.063 | 38.0 | 0.268657 | 310.30 | 8.56 | 38.668224 |
| 380 | 15465 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 21:03:25 | 2018-04-17 19:03:25 | Vin | Albert Mann Crémant d'Alsace Extra Brut 2017 | Les bulles sont fines et délicates. Le nez lég... | publish | closed | closed | albert-mann-cremant-dalsace-extra-brut-2017 | 2020-08-20 09:30:10 | 2020-08-20 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4703 | 1 | 19.80 | 42 | instock | 9.72 | -0.452933 | 237.60 | 0.155 | 54.0 | 0.250000 | 831.60 | 15.84 | 38.636364 |
| 381 | 15466 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 21:20:47 | 2018-04-17 19:20:47 | Vin | Albert Mann Pinot Gris Cuvée Albert 2017 | Le nez est franc et élégant. Ce vin est doté d... | publish | closed | closed | albert-mann-pinot-gris-cuvee-albert-2017 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4707 | 1 | 22.80 | 21 | instock | 11.54 | -0.344316 | 159.60 | 0.104 | 28.0 | 0.285714 | 478.80 | 18.24 | 36.732456 |
| 382 | 15471 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-03-19 15:58:25 | 2019-03-19 14:58:25 | Vin | Château d'Arcole Saint-Emilion Grand Cru 2016 | La cuvée Château d’Arcole est un vin biodynami... | publish | closed | closed | arcole-saint-emilion-grand-cru-2016 | 2020-06-18 10:45:05 | 2020-06-18 08:45:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5807 | 1 | 27.30 | 12 | instock | 13.82 | -0.181390 | 109.20 | 0.071 | 16.0 | 0.285714 | 327.60 | 21.84 | 36.721612 |
| 383 | 15473 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:01:21 | 2020-01-03 16:01:21 | Vin | Marc Colin Et Fils Chassagne-Montrachet 1er Cr... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6573 | 1 | 68.30 | 5 | instock | 35.29 | 1.303041 | 273.20 | 0.178 | 9.0 | 0.571429 | 341.50 | 54.64 | 35.413616 |
| 384 | 15475 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:46:01 | 2018-04-13 11:46:01 | Vin | Marc Colin Et Fils Chassagne-Montrachet Rouge ... | Ici le Pinot Noir évoque l’acacia et les fruit... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-rouge-... | 2020-01-03 17:18:33 | 2020-01-03 16:18:33 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4600 | 1 | 26.50 | 15 | instock | 13.14 | -0.210355 | 185.50 | 0.121 | 22.0 | 0.378378 | 397.50 | 21.20 | 38.018868 |
| 385 | 15476 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:27:19 | 2018-04-13 11:27:19 | Vin | Marc Colin Et Fils Chassagne-Montrachet Blanc ... | Un Chassagne-Montrachet riche, élégant et puis... | publish | closed | closed | marc-colin-et-fils-chassagne-montrachet-blanc-... | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4596 | 1 | 43.90 | 7 | instock | 22.91 | 0.419623 | 219.50 | 0.143 | 12.0 | 0.526316 | 307.30 | 35.12 | 34.766515 |
| 386 | 15478 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-13 13:36:35 | 2018-04-13 11:36:35 | Vin | Marc Colin Et Fils Saint-Aubin Blanc En Montce... | Le sol très calcaire de cette parcelle fait de... | publish | closed | closed | marc-colin-et-fils-saint-aubin-en-montceau-2017 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4598 | 1 | 41.80 | 5 | instock | 21.38 | 0.343592 | 209.00 | 0.136 | 10.0 | 0.666667 | 209.00 | 33.44 | 36.064593 |
| 387 | 15479 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 17:12:27 | 2020-01-03 16:12:27 | Vin | Marc Colin Et Fils Saint-Aubin 1er Cru La Chat... | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-et-fils-saint-aubin-1ercru-chatenie... | 2020-06-20 14:55:02 | 2020-06-20 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6575 | 1 | 41.80 | 7 | instock | 22.03 | 0.343592 | 167.20 | 0.109 | 11.0 | 0.444444 | 292.60 | 33.44 | 34.120813 |
| 388 | 15480 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-16 10:12:18 | 2018-02-16 09:12:18 | Vin | Marc Colin Et Fils Saint-Aubin Blanc Luce 2017 | Un Saint-Aubin plein de fraîcheur et de gourma... | publish | closed | closed | marc-colin-saint-aubin-luce-2017 | 2020-02-01 10:55:02 | 2020-02-01 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4215 | 1 | 26.50 | 20 | instock | 13.97 | -0.210355 | 185.50 | 0.121 | 27.0 | 0.297872 | 530.00 | 21.20 | 34.103774 |
| 389 | 15481 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 16:15:00 | 2018-10-09 14:15:00 | Vin | Marc Colin Et Fils Santenay Rouge 2017 | Commentaires à venir. | publish | closed | closed | marc-colin-et-fils-santenay-rouge-2017 | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5491 | 1 | 26.50 | 18 | instock | 13.01 | -0.210355 | 212.00 | 0.138 | 26.0 | 0.363636 | 477.00 | 21.20 | 38.632075 |
| 390 | 15482 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 15:12:58 | 2018-02-14 14:12:58 | Vin | Parés Baltà Penedès Calcari 2018 | Arômes de fruits frais, poire et banane. En bo... | publish | closed | closed | pares-balta-penedes-calcari-2018 | 2020-08-24 09:30:09 | 2020-08-24 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4163 | 1 | 10.80 | 26 | instock | 5.80 | -0.778783 | 118.80 | 0.077 | 37.0 | 0.349206 | 280.80 | 8.64 | 32.870370 |
| 391 | 15486 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:23:20 | 2019-06-04 15:23:20 | Vin | Château de Villeneuve Saumur-Champigny Clos de... | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-bienboi... | 2020-05-13 09:30:10 | 2020-05-13 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6094 | 1 | 13.40 | 24 | instock | 6.65 | -0.684649 | 134.00 | 0.087 | 34.0 | 0.344828 | 321.60 | 10.72 | 37.966418 |
| 392 | 15487 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-06-04 17:04:39 | 2019-06-04 15:04:39 | Vin | Château de Villeneuve Saumur-Champigny 2017 | <span style="font-family: trebuchet ms, geneva... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-2017 | 2020-02-25 15:25:02 | 2020-02-25 14:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6093 | 1 | 12.60 | 51 | instock | 6.71 | -0.713613 | 189.00 | 0.123 | 66.0 | 0.256410 | 642.60 | 10.08 | 33.432540 |
| 393 | 15489 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-06-04 17:25:46 | 2019-06-04 15:25:46 | Vin | Château de Villeneuve Saumur-Champigny Le Gran... | C’est le clos qui entoure le château ! Il n’es... | publish | closed | closed | chateau-de-villeneuve-saumur-champigny-grand-c... | 2020-05-15 17:15:02 | 2020-05-15 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6095 | 1 | 29.80 | 31 | instock | 15.86 | -0.090876 | 298.00 | 0.194 | 41.0 | 0.277778 | 923.80 | 23.84 | 33.473154 |
| 394 | 15490 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 13:24:30 | 2018-02-12 12:24:30 | Vin | Gilles Robin Crozes-Hermitage Rouge Albéric 2017 | Albéric Bouvet est produit à partir des vieill... | publish | closed | closed | gilles-robin-alberic-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4067 | 1 | 22.00 | 22 | instock | 11.37 | -0.373280 | 154.00 | 0.100 | 29.0 | 0.274510 | 484.00 | 17.60 | 35.397727 |
| 395 | 15525 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 15:18:53 | 2018-04-17 13:18:53 | Vin | Domaine Pellé Menetou Salon Blanc Morogues 2018 | Assemblage de 7 parcelles sur les coteaux les ... | publish | closed | closed | pelle-menetou-salon-blanc-morogues-2018 | 2020-08-25 09:30:09 | 2020-08-25 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4670 | 1 | 17.00 | 30 | instock | 8.96 | -0.554308 | 204.00 | 0.133 | 42.0 | 0.333333 | 510.00 | 13.60 | 34.117647 |
| 396 | 15526 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-09 14:21:32 | 2018-10-09 12:21:32 | Vin | Domaine Pellé Menetou Salon Blanc Les Vignes d... | La cuvée Vignes de Ratier est un grand blanc, ... | publish | closed | closed | pelle-menetou-salon-blanc-ratier-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5477 | 1 | 19.80 | 18 | instock | 10.43 | -0.452933 | 118.80 | 0.077 | 24.0 | 0.285714 | 356.40 | 15.84 | 34.154040 |
| 397 | 15527 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 15:22:16 | 2018-04-17 13:22:16 | Vin | Domaine Pellé Menetou Salon Rouge Les Cris 2015 | La parcelle des Cris est un monopole du domain... | publish | closed | closed | pelle-menetou-salon-rouge-les-cris-2015 | 2020-08-27 10:23:49 | 2020-08-27 08:23:49 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4671 | 1 | 21.90 | 28 | instock | 11.32 | -0.376901 | 219.00 | 0.143 | 38.0 | 0.303030 | 613.20 | 17.52 | 35.388128 |
| 398 | 15530 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-17 11:17:53 | 2018-05-17 09:17:53 | Vin | Alain Graillot Crozes-Hermitage Blanc 2018 | Issu de faible rendements comme pour l’ensembl... | publish | closed | closed | alain-graillot-crozes-hermitage-blanc-2018 | 2020-07-28 09:45:02 | 2020-07-28 07:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4920 | 1 | 24.40 | 16 | instock | 12.86 | -0.286387 | 146.40 | 0.095 | 22.0 | 0.315789 | 390.40 | 19.52 | 34.118852 |
| 399 | 15531 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-17 11:15:27 | 2018-05-17 09:15:27 | Vin | Alain Graillot Crozes-Hermitage Rouge 2017 | Cette très belle et très séduisante cuvée Croz... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-2017 | 2020-07-18 10:55:03 | 2020-07-18 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4919 | 1 | 24.40 | 10 | instock | 12.86 | -0.286387 | 122.00 | 0.080 | 15.0 | 0.400000 | 244.00 | 19.52 | 34.118852 |
| 400 | 15533 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 11:09:36 | 2018-05-17 09:09:36 | Vin | Alain Graillot Crozes-Hermitage Rouge La Guira... | 3 bouteilles maximum par client\n\nUne belle p... | publish | closed | closed | alain-graillot-crozes-hermitage-rouge-la-guira... | 2020-04-09 14:00:04 | 2020-04-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4918 | 1 | 37.20 | 15 | instock | 18.64 | 0.177046 | 297.60 | 0.194 | 23.0 | 0.421053 | 558.00 | 29.76 | 37.365591 |
| 401 | 15539 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2020-01-18 10:38:05 | 2020-01-18 09:38:05 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Confl... | Issue de parcelles de très vieux Carignans (95... | publish | closed | closed | clos-du-mont-olivet-vins-de-pays-du-gard-confl... | 2020-08-11 17:05:02 | 2020-08-11 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6618 | 1 | 13.50 | 49 | instock | 7.18 | -0.681028 | 189.00 | 0.123 | 63.0 | 0.250000 | 661.50 | 10.80 | 33.518519 |
| 402 | 15554 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-17 13:03:46 | 2018-05-17 11:03:46 | Vin | Marcel Richaud Rasteau Rouge 2017 | Une robe profonde, un nez de fruits mûrs, taba... | publish | closed | closed | marcel-richaud-rasteau-rouge-2017 | 2020-07-16 09:30:10 | 2020-07-16 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4934 | 1 | 22.20 | 28 | instock | 11.93 | -0.366039 | 199.80 | 0.130 | 37.0 | 0.276923 | 621.60 | 17.76 | 32.826577 |
| 403 | 15561 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2019-03-15 10:20:59 | 2019-03-15 09:20:59 | Vin | Maurel Pays d'Oc Merlot 2018 | <div>Robe rouge rubis avec des reflets violine... | publish | closed | closed | maurel-pays-d-oc-merot-2018 | 2020-08-14 10:55:02 | 2020-08-14 08:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5778 | 1 | 5.80 | 44 | instock | 3.09 | -0.959812 | 98.60 | 0.064 | 61.0 | 0.323810 | 255.20 | 4.64 | 33.405172 |
| 404 | 15564 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 09:42:25 | 2018-02-13 08:42:25 | Vin | Paul Ginglinger Pinot Gris Grand Cru Eichberg ... | Il provient d’une unique parcelle située en pl... | publish | closed | closed | paul-ginglinger-pinot-gris-gc-eichberg-2015 | 2020-08-21 17:35:02 | 2020-08-21 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4096 | 1 | 22.80 | 18 | instock | 11.54 | -0.344316 | 136.80 | 0.089 | 24.0 | 0.285714 | 410.40 | 18.24 | 36.732456 |
| 405 | 15566 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-02-15 14:16:03 | 2019-02-15 13:16:03 | Vin | Triennes IGP Méditerranée Rouge Saint Auguste ... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rouge-saint-auguste-... | 2020-08-26 10:45:02 | 2020-08-26 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5738 | 1 | 14.60 | 15 | instock | 7.17 | -0.641202 | 102.20 | 0.067 | 22.0 | 0.378378 | 219.00 | 11.68 | 38.613014 |
| 406 | 15567 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-02-28 15:13:09 | 2018-02-28 14:13:09 | Vin | Domaine de La Tour Du Bon Bandol Rouge En Sol ... | Vin d’inspiration méditerranéenne. Comme un vo... | publish | closed | closed | domaine-de-la-tour-du-bandol-en-sol-2017 | 2020-08-08 09:55:02 | 2020-08-08 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4300 | 1 | 44.00 | 2 | instock | 23.42 | 0.423244 | 88.00 | 0.057 | 4.0 | 0.666667 | 88.00 | 35.20 | 33.465909 |
| 407 | 15574 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-04-18 11:39:43 | 2019-04-18 09:39:43 | Vin | Domaine de l'Ancienne Cure Bergerac Blanc Sec ... | Nez de fruits exotiques et aux arômes floraux.... | publish | closed | closed | ancienne-cure-bergerac-blanc-sec-2016 | 2020-07-25 09:00:10 | 2020-07-25 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5963 | 1 | 13.50 | 34 | instock | 6.63 | -0.681028 | 135.00 | 0.088 | 44.0 | 0.256410 | 459.00 | 10.80 | 38.611111 |
| 408 | 15575 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 16:29:35 | 2018-04-17 14:29:35 | Vin | Château Plaisance Fronton Rouge 2017 | Le 2015 est un vrai vin de plaisir. Un superbe... | publish | closed | closed | chateau-plaisance-fronton-2017 | 2020-07-31 10:25:02 | 2020-07-31 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4682 | 1 | 9.10 | 34 | instock | 4.84 | -0.840333 | 100.10 | 0.065 | 45.0 | 0.278481 | 309.40 | 7.28 | 33.516484 |
| 409 | 15576 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-18 20:37:25 | 2018-04-18 18:37:25 | Vin | Camin Larredya Jurançon Sec La Part Davant 2018 | Ce vin de gastronomie se caractérise par son v... | publish | closed | closed | camin-larredya-jurancon-sec-la-part-davant-2018 | 2020-07-16 10:45:02 | 2020-07-16 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4733 | 1 | 16.80 | 38 | instock | 8.42 | -0.561550 | 184.80 | 0.121 | 49.0 | 0.252874 | 638.40 | 13.44 | 37.351190 |
| 410 | 15577 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2019-04-18 10:29:19 | 2019-04-18 08:29:19 | Vin | Domaine Labranche Laffont Madiran Tradition 2016 | Cette cuvée est issue des cépages Tannat, Cabe... | publish | closed | closed | labranche-laffont-madiran-tradition-2016 | 2020-07-28 09:30:12 | 2020-07-28 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5958 | 1 | 8.70 | 44 | instock | 4.50 | -0.854815 | 130.50 | 0.085 | 59.0 | 0.291262 | 382.80 | 6.96 | 35.344828 |
| 411 | 15582 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:54:45 | 2018-04-17 14:54:45 | Vin | Cosse-Maisonneuve Cahors Le Sid 2014 | Ce vin arbore une sublime robe rubis soutenue,... | publish | closed | closed | matthieu-cosse-cahors-le-sid-2014 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4687 | 1 | 30.10 | 10 | instock | 15.40 | -0.080014 | 210.70 | 0.137 | 17.0 | 0.518519 | 301.00 | 24.08 | 36.046512 |
| 412 | 15583 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-14 17:38:26 | 2018-02-14 16:38:26 | Vin | Domaine de l'Hortus Val de Montferrand La Berg... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-bergerie-blanc-2018 | 2020-07-09 14:25:02 | 2020-07-09 12:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4177 | 1 | 13.50 | 28 | instock | 7.11 | -0.681028 | 148.50 | 0.097 | 39.0 | 0.328358 | 378.00 | 10.80 | 34.166667 |
| 413 | 15605 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:42:15 | 2018-02-15 09:42:15 | Vin | Château de La Liquière Faugères Cistus Rouge 2017 | Une belle sélection parcellaire qui nous donne... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-rouge-2017 | 2020-08-26 10:45:03 | 2020-08-26 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4192 | 1 | 17.80 | 32 | instock | 8.92 | -0.525344 | 178.00 | 0.116 | 42.0 | 0.270270 | 569.60 | 14.24 | 37.359551 |
| 414 | 15612 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-15 11:37:35 | 2018-05-15 09:37:35 | Vin | Jean-Baptiste Arena Patrimonio Rouge Grotte Di... | De magnifiques notes de fruits rouge et d'épic... | publish | closed | closed | jean-baptiste-arena-patrimonio-rouge-grotte-di... | 2020-08-07 18:15:02 | 2020-08-07 16:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4912 | 1 | 25.90 | 34 | instock | 12.98 | -0.232078 | 259.00 | 0.169 | 44.0 | 0.256410 | 880.60 | 20.72 | 37.355212 |
| 415 | 15613 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-15 11:47:17 | 2018-05-15 09:47:17 | Vin | Antoine-Marie Arena Patrimonio Hauts de Carco ... | <span style="display: inline !important; float... | publish | closed | closed | antoine-marie-arena-patrimonio-hauts-carco-2018 | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4914 | 1 | 25.90 | 24 | instock | 12.98 | -0.232078 | 181.30 | 0.118 | 31.0 | 0.254545 | 621.60 | 20.72 | 37.355212 |
| 416 | 15614 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 10:53:15 | 2018-05-15 08:53:15 | Vin | Antoine-Marie Arena Vin de France Bianco Genti... | Magnifiques reflets verts, superbe maturité du... | publish | closed | closed | antoine-marie-arena-vin-de-france-bianco-genti... | 2020-06-06 09:55:02 | 2020-06-06 07:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4909 | 1 | 25.90 | 14 | instock | 12.85 | -0.232078 | 155.40 | 0.101 | 20.0 | 0.352941 | 362.60 | 20.72 | 37.982625 |
| 417 | 15615 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-15 12:00:26 | 2018-05-15 10:00:26 | Vin | Jean-Baptiste Arena Patrimonio Blanc Morta Maio | Très joli nez, assez délicat, de fruits jaunes... | publish | closed | closed | jean-baptiste-arena-patrimonio-morta-maio | 2020-08-22 17:25:02 | 2020-08-22 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4915 | 1 | 25.90 | 28 | instock | 13.38 | -0.232078 | 284.90 | 0.186 | 39.0 | 0.328358 | 725.20 | 20.72 | 35.424710 |
| 418 | 15621 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-12 09:51:40 | 2018-04-12 07:51:40 | Vin | Domaine Giudicelli Vin de France Eté Rouge 2018 | Eté Rouge, c'est un vin plein de fraîcheur et ... | publish | closed | closed | domaine-giudicelli-vfd-ete-rouge-2018 | 2020-08-27 10:12:06 | 2020-08-27 08:12:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4564 | 1 | 21.70 | 28 | instock | 11.66 | -0.384142 | 217.00 | 0.142 | 38.0 | 0.303030 | 607.60 | 17.36 | 32.834101 |
| 419 | 15629 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 17:25:46 | 2018-02-14 16:25:46 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-2018 | 2020-08-27 09:30:10 | 2020-08-27 07:30:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4176 | 1 | 13.50 | 18 | instock | 6.63 | -0.681028 | 108.00 | 0.070 | 26.0 | 0.363636 | 243.00 | 10.80 | 38.611111 |
| 420 | 15631 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-02-21 16:19:41 | 2019-02-21 15:19:41 | Vin | Thibaud Boudignon Anjou Blanc 2018 | Amateurs de chenin, il faut ajouter Thibaud Bo... | publish | closed | closed | boudignon-anjou-blanc-2018 | 2020-08-06 14:45:03 | 2020-08-06 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5747 | 1 | 24.50 | 12 | instock | 12.15 | -0.282766 | 122.50 | 0.080 | 17.0 | 0.344828 | 294.00 | 19.60 | 38.010204 |
| 421 | 15647 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-04 10:02:37 | 2020-01-04 09:02:37 | Vin | Saumaize-Michelin Pouilly-Fuissé Ampélopsis 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-ampelopsis-2016 | 2020-05-24 09:17:20 | 2020-05-24 07:17:20 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6578 | 1 | 40.00 | 7 | instock | 19.63 | 0.278421 | 160.00 | 0.104 | 11.0 | 0.444444 | 280.00 | 32.00 | 38.656250 |
| 422 | 15648 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-13 13:32:49 | 2018-02-13 12:32:49 | Champagne | Champagne Mailly Grand Cru Extra Brut Millésim... | L’or riche et profond de sa structure met tout... | publish | closed | closed | champagne-mailly-grand-cru-extra-brut-2012 | 2020-08-27 17:05:02 | 2020-08-27 15:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4147 | 1 | 33.00 | 100 | instock | 18.48 | 0.024982 | 264.00 | 0.172 | 108.0 | 0.076923 | 3300.00 | 26.40 | 30.000000 |
| 423 | 15649 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-09-13 15:25:52 | 2018-09-13 13:25:52 | Vin | La Préceptorie Maury Sec Rouge Copain Comme Co... | <div>Un nez fruité et généreux, qui dévoile de... | publish | closed | closed | la-preceptorie-maury-sec-rouge-copain-comme-co... | 2020-06-20 09:00:10 | 2020-06-20 07:00:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5439 | 1 | 13.20 | 46 | instock | 6.68 | -0.691890 | 184.80 | 0.121 | 60.0 | 0.264151 | 607.20 | 10.56 | 36.742424 |
| 424 | 15654 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-09-10 11:38:09 | 2019-09-10 09:38:09 | Vin | Borie de Maurel Minervois Blanc La Belle Aude ... | C’est un blanc de plaisir, charnu mais équilib... | publish | closed | closed | borie-de-maurel-minervois-blanc-belle-aude-2018 | 2019-10-02 09:35:34 | 2019-10-02 07:35:34 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6280 | 1 | 10.40 | 38 | instock | 5.53 | -0.793266 | 114.40 | 0.075 | 49.0 | 0.252874 | 395.20 | 8.32 | 33.533654 |
| 425 | 15655 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-15 14:21:07 | 2018-02-15 13:21:07 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Grande fraîcheur et complexité avec une belle ... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-08-14 16:35:02 | 2020-08-14 14:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4202 | 1 | 38.00 | 6 | instock | 19.63 | 0.206010 | 114.00 | 0.074 | 9.0 | 0.400000 | 228.00 | 30.40 | 35.427632 |
| 426 | 15656 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 14:09:02 | 2018-02-15 13:09:02 | Vin | Mas de Daumas Gassac IGP Saint-Guilhem-le-Dése... | Sa robe est d'un pourpre soutenu, son éclat li... | publish | closed | closed | mas-de-daumas-gassac-igp-saint-guilhem-le-dese... | 2020-07-25 14:00:02 | 2020-07-25 12:00:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4201 | 1 | 38.00 | 11 | instock | 19.24 | 0.206010 | 266.00 | 0.173 | 18.0 | 0.482759 | 418.00 | 30.40 | 36.710526 |
| 427 | 15657 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:07:28 | 2018-04-17 20:07:28 | Vin | Domaine Schoenheitz Pinot Gris Herrenreben 2017 | Robe jaune paille brillante aux reflets dorés.... | publish | closed | closed | domaine-schoenheitz-pinot-gris-herrenreben-2017 | 2020-08-21 14:45:03 | 2020-08-21 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4716 | 1 | 18.60 | 32 | instock | 9.23 | -0.496379 | 204.60 | 0.133 | 43.0 | 0.293333 | 595.20 | 14.88 | 37.970430 |
| 428 | 15658 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 22:11:25 | 2018-04-17 20:11:25 | Vin | Domaine Schoenheitz Pinot Noir Herrenreben 2017 | Rouge cerise noire à reflets grenat. Nez bien ... | publish | closed | closed | domaine-schoenheitz-pinot-noir-herrenreben-2017 | 2020-07-25 17:35:03 | 2020-07-25 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4717 | 1 | 23.40 | 20 | instock | 11.73 | -0.322592 | 163.80 | 0.107 | 27.0 | 0.297872 | 468.00 | 18.72 | 37.339744 |
| 429 | 15659 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 13:54:21 | 2018-04-13 11:54:21 | Vin | Catherine et Claude Maréchal Chorey-Lès-Beaune... | Léger et souple, modérément tannique mais rich... | publish | closed | closed | catherine-et-claude-marechal-chorey-les-beaune... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4602 | 1 | 31.50 | 8 | instock | 16.93 | -0.029327 | 126.00 | 0.082 | 12.0 | 0.400000 | 252.00 | 25.20 | 32.817460 |
| 430 | 15660 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-13 14:11:01 | 2018-04-13 12:11:01 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-08-21 17:25:02 | 2020-08-21 15:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4604 | 1 | 49.00 | 5 | instock | 25.06 | 0.604272 | 196.00 | 0.128 | 9.0 | 0.571429 | 245.00 | 39.20 | 36.071429 |
| 431 | 15661 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-02-22 14:03:10 | 2020-02-22 13:03:10 | Vin | Catherine et Claude Maréchal Savigny-Lès-Beaun... | Les Marechal proposent un vin rouge à la struc... | publish | closed | closed | catherine-et-claude-marechal-savigny-les-beaun... | 2020-08-27 10:15:02 | 2020-08-27 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6664 | 1 | 35.60 | 16 | instock | 19.31 | 0.119117 | 284.80 | 0.186 | 24.0 | 0.400000 | 569.60 | 28.48 | 32.198034 |
| 432 | 15662 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-27 10:13:03 | 2018-02-27 09:13:03 | Vin | Chermette Domaine du Vissoux Beaujolais Griott... | C'est le Beaujolais typique : fruité, frais, g... | publish | closed | closed | chermette-domaine-du-vissoux-beaujolais-griott... | 2020-07-11 11:25:03 | 2020-07-11 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4261 | 1 | 9.90 | 48 | instock | 5.01 | -0.811369 | 148.50 | 0.097 | 63.0 | 0.270270 | 475.20 | 7.92 | 36.742424 |
| 433 | 15663 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-27 10:27:01 | 2018-02-27 09:27:01 | Vin | Chermette Domaine du Vissoux Brouilly Pierreux... | Le Brouilly est le plus méridional des crus du... | publish | closed | closed | chermette-domaine-du-vissoux-brouilly-pierreux... | 2020-08-01 09:35:02 | 2020-08-01 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4262 | 1 | 15.80 | 43 | instock | 8.33 | -0.597755 | 205.40 | 0.134 | 56.0 | 0.262626 | 679.40 | 12.64 | 34.098101 |
| 434 | 15664 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-27 10:27:32 | 2018-02-27 09:27:32 | Vin | Chermette Domaine du Vissoux Fleurie Poncié 2018 | Très représentative de l'appellation Fleurie, ... | publish | closed | closed | chermette-domaine-du-vissoux-fleurie-poncie-2018 | 2020-08-08 10:55:03 | 2020-08-08 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4263 | 1 | 15.80 | 18 | instock | 8.49 | -0.597755 | 142.20 | 0.093 | 27.0 | 0.400000 | 284.40 | 12.64 | 32.832278 |
| 435 | 15665 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 10:30:04 | 2018-02-27 09:30:04 | Vin | Chermette Domaine du Vissoux Moulin à Vent Les... | On appelle le Moulin à Vent le roi du Beaujola... | publish | closed | closed | chermette-domaine-du-vissoux-moulin-a-vent-tro... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4264 | 1 | 17.80 | 16 | instock | 9.20 | -0.525344 | 124.60 | 0.081 | 23.0 | 0.358974 | 284.80 | 14.24 | 35.393258 |
| 436 | 15667 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 21:53:24 | 2018-04-17 19:53:24 | Vin | Domaine Schoenheitz Crémant d'Alsace Mémoire d... | Cristallin, jaune pâle avec des reflets or. De... | publish | closed | closed | domaine-schoenheitz-cremant-dalsace-memoire-gr... | 2020-08-06 16:05:02 | 2020-08-06 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4712 | 1 | 15.80 | 27 | instock | 8.57 | -0.597755 | 205.40 | 0.134 | 40.0 | 0.388060 | 426.60 | 12.64 | 32.199367 |
| 437 | 15668 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 14:57:29 | 2018-02-13 13:57:29 | Vin | Planeta Sicilia La Segreta Bianco 2017 | Des notes d'agrumes et florales, additionnées ... | publish | closed | closed | planeta-sicilia-segreta-bianco-2017 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4159 | 1 | 9.30 | 51 | instock | 4.90 | -0.833092 | 139.50 | 0.091 | 66.0 | 0.256410 | 474.30 | 7.44 | 34.139785 |
| 438 | 15670 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 22:14:29 | 2018-04-17 20:14:29 | Vin | Domaine Schoenheitz Pinot Noir Val Saint Grégo... | Couleur rouge cerise brillant à reflets grenat... | publish | closed | closed | domaine-schoenheitz-pinot-noir-val-saint-grego... | 2020-07-09 15:35:03 | 2020-07-09 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4718 | 1 | 18.20 | 35 | instock | 9.78 | -0.510862 | 218.40 | 0.142 | 47.0 | 0.292683 | 637.00 | 14.56 | 32.829670 |
| 439 | 15672 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:38:32 | 2018-02-16 09:38:32 | Vin | Domaine de l'Ecu Muscadet Granite 2018 | Robe Or blanc. Nez élégant sur des notes minér... | publish | closed | closed | domaine-de-lecu-muscadet-granite-2018 | 2020-08-01 14:00:09 | 2020-08-01 12:00:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4217 | 1 | 17.10 | 12 | instock | 9.28 | -0.550688 | 102.60 | 0.067 | 18.0 | 0.400000 | 205.20 | 13.68 | 32.163743 |
| 440 | 15674 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-01-31 14:08:10 | 2019-01-31 13:08:10 | Vin | Domaine des Terres d'Ocre Saint-Pourçain Blanc... | Assemblage de tressailler et chardonnay aux no... | publish | closed | closed | domaine-terres-d-ocre-saint-pourcain-blanc-ins... | 2020-08-05 09:30:11 | 2020-08-05 07:30:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5706 | 1 | 10.30 | 26 | instock | 5.32 | -0.796886 | 123.60 | 0.081 | 38.0 | 0.375000 | 267.80 | 8.24 | 35.436893 |
| 441 | 15675 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-13 09:48:06 | 2018-02-13 08:48:06 | Vin | Paul Ginglinger Pinot Gris Les Prelats 2018 | Les Prélats est un assemblage de nombreuses pa... | publish | closed | closed | paul-ginglinger-pinot-gris-prelats-2018 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4097 | 1 | 12.80 | 35 | instock | 6.48 | -0.706372 | 140.80 | 0.092 | 46.0 | 0.271605 | 448.00 | 10.24 | 36.718750 |
| 442 | 15676 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 09:24:04 | 2018-02-13 08:24:04 | Vin | Paul Ginglinger Gewurztraminer Wahlenbourg 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | ginglinger-gewurzt-wahlenbourg-2017 | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4094 | 1 | 13.70 | 20 | instock | 7.15 | -0.673787 | 95.90 | 0.063 | 27.0 | 0.297872 | 274.00 | 10.96 | 34.762774 |
| 443 | 15677 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 15:30:19 | 2018-09-01 13:30:19 | Vin | Argentine Alamos Catena Malbec 2017 | Cette cuvée est élevé pendant 12 mois en barri... | publish | closed | closed | argentine-alamos-catena-malbec-2017 | 2020-07-27 16:15:03 | 2020-07-27 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5377 | 1 | 19.00 | 39 | instock | 10.01 | -0.481897 | 228.00 | 0.149 | 51.0 | 0.266667 | 741.00 | 15.20 | 34.144737 |
| 444 | 15678 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-11-02 13:01:42 | 2019-11-02 12:01:42 | Vin | Tempier Bandol Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-blanc-2018 | 2020-07-21 15:35:03 | 2020-07-21 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6325 | 1 | 27.90 | 22 | instock | 15.14 | -0.159667 | 279.00 | 0.182 | 32.0 | 0.370370 | 613.80 | 22.32 | 32.168459 |
| 445 | 15683 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-13 10:23:45 | 2018-02-13 09:23:45 | Vin | Emile Boeckel Riesling Brandluft 2018 | Le riesling Brandluft est élevé, vinifié et co... | publish | closed | closed | emile-boeckel-riesling-brandluft-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4104 | 1 | 9.70 | 35 | instock | 5.11 | -0.818610 | 145.50 | 0.095 | 50.0 | 0.352941 | 339.50 | 7.76 | 34.149485 |
| 446 | 15688 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-19 10:51:29 | 2019-03-19 09:51:29 | Vin | Château Saransot-Dupré Listrac-Médoc 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | chateau-saransot-dupre-listrac-medoc-2016 | 2020-07-06 17:45:03 | 2020-07-06 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5797 | 1 | 17.20 | 29 | instock | 9.24 | -0.547067 | 189.20 | 0.123 | 40.0 | 0.318841 | 498.80 | 13.76 | 32.848837 |
| 447 | 15690 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 14:18:27 | 2018-02-27 13:18:27 | Vin | Château de Cazeneuve Languedoc Blanc 2016 | Une robe jaune pâle, un nez complexe où l'on d... | publish | closed | closed | cazeneuve-languedoc-blanc-2016 | 2020-08-03 18:05:02 | 2020-08-03 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4280 | 1 | 18.90 | 37 | instock | 9.57 | -0.485518 | 226.80 | 0.148 | 49.0 | 0.279070 | 699.30 | 15.12 | 36.706349 |
| 448 | 15704 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-01-03 16:46:47 | 2020-01-03 15:46:47 | Vin | Decelle-Villa Saint-Aubin 1er Cru Sous Roche D... | Commentaires à venir. | publish | closed | closed | decelle-villa-saint-aubin-dumay-2015 | 2020-02-08 09:00:14 | 2020-02-08 08:00:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6572 | 1 | 44.00 | 12 | instock | 22.28 | 0.423244 | 352.00 | 0.230 | 20.0 | 0.500000 | 528.00 | 35.20 | 36.704545 |
| 449 | 15705 | 0 | 0 | 0 | 0.0 | 17.0 | taxable | 2.0 | 2020-01-03 16:39:53 | 2020-01-03 15:39:53 | Vin | Decelle-Villa Chorey-Lès-Beaune 2016 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-chorey-beaune-2016 | 2020-07-27 11:55:02 | 2020-07-27 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6569 | 1 | 29.00 | 58 | instock | 15.28 | -0.119841 | 493.00 | 0.321 | 75.0 | 0.255639 | 1682.00 | 23.20 | 34.137931 |
| 450 | 15706 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-03 16:42:53 | 2020-01-03 15:42:53 | Vin | Decelle-Villa Marsannay Les Longeroies 2015 | C’est le village le plus au nord de la Côte de... | publish | closed | closed | decelle-villa-marsannay-longeroies-2015 | 2020-03-04 13:40:13 | 2020-03-04 12:40:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6570 | 1 | 29.20 | 19 | instock | 14.33 | -0.112600 | 262.80 | 0.171 | 28.0 | 0.382979 | 554.80 | 23.36 | 38.655822 |
| 451 | 15707 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-03 16:37:41 | 2020-01-03 15:37:41 | Vin | Decelle-Villa Chambolle-Musigny 2017 | Considéré comme le plus « féminin » des vins d... | publish | closed | closed | decelle-villa-chambolle-musigny-2017 | 2020-05-09 14:00:04 | 2020-05-09 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6568 | 1 | 72.00 | 7 | instock | 35.71 | 1.437002 | 288.00 | 0.188 | 11.0 | 0.444444 | 504.00 | 57.60 | 38.003472 |
| 452 | 15710 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-10-05 10:46:15 | 2019-10-05 08:46:15 | Vin | Lucien Boillot Gevrey Chambertin 1er Cru Les C... | Un vin d'une grande pureté et d'une amplitude ... | publish | closed | closed | lucien-boillot-gevrey-chambertin-1er-cru-les-c... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6299 | 1 | 78.00 | 0 | outofstock | 41.51 | 1.654236 | 312.00 | 0.203 | 4.0 | 2.000000 | 0.00 | 62.40 | 33.477564 |
| 453 | 15711 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-07-31 10:33:12 | 2018-07-31 08:33:12 | Vin | Lucien Boillot Gevrey Chambertin Les Evocelles... | Un vin puissant mais très équilibré. Les arôme... | publish | closed | closed | lucien-boillot-gevrey-chambertin-les-evocelles... | 2020-07-03 09:30:12 | 2020-07-03 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5061 | 1 | 52.60 | 5 | instock | 27.99 | 0.734613 | 157.80 | 0.103 | 8.0 | 0.461538 | 263.00 | 42.08 | 33.483840 |
| 454 | 15713 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-07-31 10:51:21 | 2018-07-31 08:51:21 | Vin | Lucien Boillot Gevrey Chambertin 2017 | Un Gevrey agréablement fruité, doté d'une atta... | publish | closed | closed | lucien-boillot-gevrey-chambertin-2017 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5062 | 1 | 45.00 | 12 | instock | 23.25 | 0.459450 | 405.00 | 0.264 | 21.0 | 0.545455 | 540.00 | 36.00 | 35.416667 |
| 455 | 15714 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:50:55 | 2018-02-16 08:50:55 | Vin | Lucien Boillot Pommard 2017 | Un Pommard ample et généreux avec beaucoup de ... | publish | closed | closed | lucien-boillot-pommard-2017 | 2020-01-20 09:30:12 | 2020-01-20 08:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4211 | 1 | 48.50 | 5 | instock | 25.56 | 0.586169 | 145.50 | 0.095 | 8.0 | 0.461538 | 242.50 | 38.80 | 34.123711 |
| 456 | 15715 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-07-31 11:18:26 | 2018-07-31 09:18:26 | Vin | Lucien Boillot Pommard 1er Cru Les Croix Noire... | Des notes de cassis et de brulat règnent sur c... | publish | closed | closed | lucien-boillot-pommard-1er-cru-les-croix-noire... | 2020-03-27 09:30:21 | 2020-03-27 08:30:21 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5063 | 1 | 67.00 | 1 | instock | 33.92 | 1.255974 | 67.00 | 0.044 | 2.0 | 0.666667 | 67.00 | 53.60 | 36.716418 |
| 457 | 15717 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-16 09:55:50 | 2018-02-16 08:55:50 | Vin | Lucien Boillot Volnay 2017 | Un Volnay ferme, élégant et légèrement racé, s... | publish | closed | closed | lucien-boillot-volnay-2017 | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4212 | 1 | 39.80 | 12 | instock | 21.39 | 0.271180 | 318.40 | 0.208 | 20.0 | 0.500000 | 477.60 | 31.84 | 32.820352 |
| 458 | 15718 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-16 10:02:13 | 2018-02-16 09:02:13 | Vin | Lucien Boillot Volnay 1er Cru Les Angles 2017 | Un Volnay 1er Cru au nez légèrement sauvage, m... | publish | closed | closed | lucien-boillot-volnay-1ercru-angles-2017 | 2020-08-14 11:45:02 | 2020-08-14 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4213 | 1 | 58.80 | 10 | instock | 29.16 | 0.959088 | 352.80 | 0.230 | 16.0 | 0.461538 | 588.00 | 47.04 | 38.010204 |
| 459 | 15720 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-16 09:43:40 | 2018-02-16 08:43:40 | Vin | Lucien Boillot Nuits-Saint-Georges 1er Cru Les... | Un nez très généreux, d'une complexité très in... | publish | closed | closed | lucien-boillot-nuits-saint-georges-1ercru-prul... | 2020-05-20 16:15:03 | 2020-05-20 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4210 | 1 | 79.80 | 4 | instock | 39.17 | 1.719406 | 239.40 | 0.156 | 7.0 | 0.545455 | 319.20 | 63.84 | 38.643484 |
| 460 | 15729 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:08:52 | 2018-04-18 10:08:52 | Vin | Maurice Schoech Gewurztraminer Vendanges Tardi... | La peau épaisse et rosée du gewurztraminer se ... | publish | closed | closed | schoech-gewurztraminer-vt-2017 | 2020-08-25 18:05:02 | 2020-08-25 16:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4728 | 1 | 29.50 | 14 | instock | 14.48 | -0.101738 | 147.50 | 0.096 | 19.0 | 0.303030 | 413.00 | 23.60 | 38.644068 |
| 461 | 15730 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 14:37:49 | 2018-04-19 12:37:49 | Vin | Maurice Schoech Pinot Gris Grand Cru Schlossbe... | Nez juvénile sur les fruits blancs, le froment... | publish | closed | closed | maurice-schoech-pinot-gris-grand-cru-schlossbe... | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4793 | 1 | 18.70 | 15 | instock | 9.37 | -0.492759 | 130.90 | 0.085 | 22.0 | 0.378378 | 280.50 | 14.96 | 37.366310 |
| 462 | 15731 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-04-19 13:56:47 | 2018-04-19 11:56:47 | Vin | Maurice Schoech Pinot Gris 2018 | Il est produit pour moitié sur les coteaux gra... | publish | closed | closed | maurice-schoech-pinot-gris-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4788 | 1 | 12.30 | 10 | instock | 6.29 | -0.724475 | 36.90 | 0.024 | 13.0 | 0.260870 | 123.00 | 9.84 | 36.077236 |
| 463 | 15732 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 14:25:00 | 2018-04-19 12:25:00 | Vin | Maurice Schoech Riesling 2018 | Un Riesling plein de fruits frais, sec et racé... | publish | closed | closed | maurice-schoech-riesling-2018 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4790 | 1 | 11.10 | 22 | instock | 5.62 | -0.767922 | 111.00 | 0.072 | 32.0 | 0.370370 | 244.20 | 8.88 | 36.711712 |
| 464 | 15733 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 14:35:01 | 2018-04-19 12:35:01 | Vin | Maurice Schoech Riesling Grand Cru Kaefferkopf... | Ce vin provient de deux parcelles idéalement s... | publish | closed | closed | maurice-schoech-riesling-grand-cru-kaefferkopf... | 2020-07-07 17:05:03 | 2020-07-07 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4792 | 1 | 21.00 | 29 | instock | 11.28 | -0.409486 | 252.00 | 0.164 | 41.0 | 0.342857 | 609.00 | 16.80 | 32.857143 |
| 465 | 15734 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-19 13:46:52 | 2018-04-19 11:46:52 | Vin | Maurice Schoech Riesling Vendanges Tardives 2017 | Ces raisins ont été récoltés en trois tris ave... | publish | closed | closed | maurice-schoech-riesling-vendanges-tardives-2017 | 2020-08-20 09:30:12 | 2020-08-20 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4784 | 1 | 28.50 | 21 | instock | 14.28 | -0.137944 | 285.00 | 0.186 | 31.0 | 0.384615 | 598.50 | 22.80 | 37.368421 |
| 466 | 15735 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 20:55:26 | 2020-04-24 18:55:26 | Vin | Domino Romano Ribera del Duero RDR 2015 | Le défi de Dominio Romano. Un vin comme expres... | publish | closed | closed | domino-romano-ribera-del-duero-rdr-2015 | 2020-08-21 15:45:03 | 2020-08-21 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6884 | 1 | 46.50 | 9 | instock | 24.99 | 0.513758 | 232.50 | 0.152 | 14.0 | 0.434783 | 418.50 | 37.20 | 32.822581 |
| 467 | 15736 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-04-24 21:32:59 | 2020-04-24 19:32:59 | Vin | Gratavinum Priorat 2?r 2017 | Le nez est intense, avec des notes de confitur... | publish | closed | closed | gratavinum-priorat-2%cf%80r-2017 | 2020-06-24 11:45:03 | 2020-06-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6887 | 1 | 21.80 | 15 | instock | 11.71 | -0.380521 | 109.00 | 0.071 | 20.0 | 0.285714 | 327.00 | 17.44 | 32.855505 |
| 468 | 15737 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-06-02 09:23:21 | 2018-06-02 07:23:21 | Vin | Château Turcaud Bordeaux Blanc Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-blanc-cuvee-majeure-2018 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4962 | 1 | 11.30 | 23 | instock | 5.55 | -0.760681 | 90.40 | 0.059 | 31.0 | 0.296296 | 259.90 | 9.04 | 38.606195 |
| 469 | 15740 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2020-04-25 12:32:17 | 2020-04-25 10:32:17 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2015 | Une réussite absolue, jamais les cabernets ont... | publish | closed | closed | jean-faure-saint-emilion-grand-cru-2015 | 2020-08-27 11:35:02 | 2020-08-27 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6920 | 1 | 50.50 | 9 | instock | 25.05 | 0.658581 | 404.00 | 0.263 | 17.0 | 0.615385 | 454.50 | 40.40 | 37.995050 |
| 470 | 15741 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-04-25 12:49:49 | 2020-04-25 10:49:49 | Vin | Le Cèdre de Jean Faure Saint-Emilion 2016 | Un nez ouvert sur un velouté de fruits rouges... | publish | closed | closed | cedre-de-jean-faure-saint-emilion-2016 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6928 | 1 | 19.00 | 15 | instock | 9.62 | -0.481897 | 133.00 | 0.087 | 22.0 | 0.378378 | 285.00 | 15.20 | 36.710526 |
| 471 | 15745 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2019-10-05 10:57:58 | 2019-10-05 08:57:58 | Vin | Borie La Vitarèle Saint-Chinian Midi Rouge 2015 | Midi Rouge, le petit dernier de la Vitarèle co... | publish | closed | closed | borie-la-vitarele-saint-chinian-midi-rouge-2015 | 2020-06-18 10:45:06 | 2020-06-18 08:45:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6301 | 1 | 40.50 | 0 | outofstock | 20.51 | 0.296524 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 32.40 | 36.697531 |
| 472 | 15746 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-15 09:39:10 | 2018-02-15 08:39:10 | Vin | Borie La Vitarèle Saint-Chinian Les Crès 2016 | Intense, délicatement poivré, de belles notes ... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-cres-2016 | 2020-08-07 17:35:02 | 2020-08-07 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4183 | 1 | 21.40 | 23 | instock | 10.61 | -0.395004 | 149.80 | 0.098 | 30.0 | 0.264151 | 492.20 | 17.12 | 38.025701 |
| 473 | 15747 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:31:31 | 2018-02-15 08:31:31 | Vin | Borie La Vitarèle Saint-Chinian Les Schistes 2017 | Beaucoup de délicatesse dans des nuances épicé... | publish | closed | closed | borie-la-vitarele-saint-chinian-les-schistes-2017 | 2020-08-14 18:45:02 | 2020-08-14 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4182 | 1 | 16.70 | 43 | instock | 8.46 | -0.565170 | 217.10 | 0.142 | 56.0 | 0.262626 | 718.10 | 13.36 | 36.676647 |
| 474 | 15748 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-11-26 10:57:23 | 2018-11-26 09:57:23 | Vin | Tempier Bandol Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-2017 | 2020-08-26 17:15:02 | 2020-08-26 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5564 | 1 | 30.80 | 10 | instock | 16.07 | -0.054671 | 277.20 | 0.181 | 19.0 | 0.620690 | 308.00 | 24.64 | 34.780844 |
| 475 | 15753 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-09 14:59:27 | 2018-10-09 12:59:27 | Vin | David-Beaupère Juliénas La Bottière Vieilles V... | Belle robe framboise brillante assez soutenue.... | publish | closed | closed | david-beaupere-julienas-bottiere-2018 | 2020-07-21 17:55:04 | 2020-07-21 15:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5483 | 1 | 17.90 | 31 | instock | 9.71 | -0.521723 | 232.70 | 0.152 | 44.0 | 0.346667 | 554.90 | 14.32 | 32.192737 |
| 476 | 15755 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-09-01 09:32:13 | 2018-09-01 07:32:13 | Vin | David-Beaupère Juliénas Les Trois Verres 2018 | Structuré et légèrement tanique, complexe en b... | publish | closed | closed | david-beaupere-julienas-2018 | 2020-03-10 18:45:03 | 2020-03-10 17:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5375 | 1 | 15.20 | 41 | instock | 8.09 | -0.619479 | 182.40 | 0.119 | 53.0 | 0.255319 | 623.20 | 12.16 | 33.470395 |
| 477 | 15756 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 15:02:42 | 2018-10-09 13:02:42 | Vin | David-Beaupère Juliénas Vayolette 2017 | Un Juliénas intense et profond. De beaux arôme... | publish | closed | closed | david-beaupere-julienas-vayolette-2017 | 2020-05-11 11:15:03 | 2020-05-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5484 | 1 | 21.60 | 25 | instock | 11.61 | -0.387762 | 172.80 | 0.113 | 33.0 | 0.275862 | 540.00 | 17.28 | 32.812500 |
| 478 | 15758 | 0 | 0 | 0 | 0.0 | 18.0 | taxable | 2.0 | 2018-02-16 10:54:27 | 2018-02-16 09:54:27 | Vin | Xavier Frissant Touraine Amboise Chenin Les Pi... | Un Touraine Amboise fin et élégant, un joli ch... | publish | closed | closed | frissant-chenin-pierres-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4220 | 1 | 11.60 | 48 | instock | 5.75 | -0.749819 | 208.80 | 0.136 | 66.0 | 0.315789 | 556.80 | 9.28 | 38.038793 |
| 479 | 15759 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-16 11:14:54 | 2018-02-16 10:14:54 | Vin | Xavier Frissant Touraine Amboise M de La Touch... | Vin léger et gourmand, sur des belles notes de... | publish | closed | closed | xavier-frissant-touraine-amboise-m-de-la-touch... | 2020-08-27 09:38:38 | 2020-08-27 07:38:38 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4222 | 1 | 8.90 | 45 | instock | 4.74 | -0.847574 | 124.60 | 0.081 | 59.0 | 0.269231 | 400.50 | 7.12 | 33.426966 |
| 480 | 15763 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-25 14:08:16 | 2020-01-25 13:08:16 | Vin | Domaine de la Monardière Vacqueyras Vieilles V... | Sélection des plus vieilles parcelles du domai... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-vieill... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6635 | 1 | 22.40 | 16 | instock | 10.99 | -0.358798 | 112.00 | 0.073 | 21.0 | 0.270270 | 358.40 | 17.92 | 38.671875 |
| 481 | 15764 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-01-04 14:12:18 | 2020-01-04 13:12:18 | Vin | Domaine de la Monardière Vacqueyras Blanc Galé... | Vin blanc à la fois riche et expressif, la cuv... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-galejade-2018 | 2020-07-20 17:10:18 | 2020-07-20 15:10:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6592 | 1 | 24.40 | 29 | instock | 12.10 | -0.286387 | 219.60 | 0.143 | 38.0 | 0.268657 | 707.60 | 19.52 | 38.012295 |
| 482 | 15766 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-18 10:50:35 | 2019-04-18 08:50:35 | Vin | Domaine Labranche Laffont Madiran Vieilles Vig... | Cette cuvée issue de vignes de Tannat âgées de... | publish | closed | closed | domaine-labranche-laffont-madiran-vieilles-vig... | 2020-07-25 09:00:11 | 2020-07-25 07:00:11 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5959 | 1 | 15.40 | 24 | instock | 7.72 | -0.612238 | 138.60 | 0.090 | 33.0 | 0.315789 | 369.60 | 12.32 | 37.337662 |
| 483 | 15767 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-13 10:14:48 | 2018-02-13 09:14:48 | Vin | Emile Boeckel Sylvaner Grand Cru Zotzenberg 2017 | Unique terroir où le Sylvaner peut être classé... | publish | closed | closed | emile-boeckel-sylvaner-grand-cru-zotzenberg-2017 | 2020-08-25 18:25:02 | 2020-08-25 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4102 | 1 | 16.30 | 16 | instock | 8.00 | -0.579652 | 114.10 | 0.074 | 23.0 | 0.358974 | 260.80 | 13.04 | 38.650307 |
| 484 | 15769 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-04 11:37:10 | 2020-01-04 10:37:10 | Vin | La Préceptorie Côtes du Roussillon Blanc Coume... | Un vin complexe, riche et floral. La bouche cr... | publish | closed | closed | la-preceptorie-cotes-du-roussillon-coume-marie... | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6584 | 1 | 13.50 | 22 | instock | 6.91 | -0.681028 | 135.00 | 0.088 | 32.0 | 0.370370 | 297.00 | 10.80 | 36.018519 |
| 485 | 15770 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-20 10:16:13 | 2018-02-20 09:16:13 | Vin | La Préceptorie Côtes du Roussillon Coume Marie... | Coume Marie à une robe rouge sombre et présent... | publish | closed | closed | preceptorie-cotes-du-roussillon-coume-marie-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4244 | 1 | 13.50 | 39 | instock | 6.63 | -0.681028 | 175.50 | 0.114 | 52.0 | 0.285714 | 526.50 | 10.80 | 38.611111 |
| 486 | 15773 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-11 14:10:53 | 2018-05-11 12:10:53 | Vin | Saumaize-Michelin Pouilly-Fuissé Clos sur la R... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-clos-sur-la-r... | 2020-07-31 09:30:09 | 2020-07-31 07:30:09 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4886 | 1 | 28.40 | 14 | instock | 14.53 | -0.141564 | 142.00 | 0.093 | 19.0 | 0.303030 | 397.60 | 22.72 | 36.047535 |
| 487 | 15774 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:14:07 | 2019-03-28 09:14:07 | Vin | Saumaize-Michelin Viré-Clessé 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-vire-clesse-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5891 | 1 | 19.00 | 24 | instock | 9.72 | -0.481897 | 190.00 | 0.124 | 34.0 | 0.344828 | 456.00 | 15.20 | 36.052632 |
| 488 | 15775 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-28 10:11:26 | 2019-03-28 09:11:26 | Vin | Saumaize-Michelin Saint-Véran Les Crèches 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-creches-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5890 | 1 | 19.30 | 29 | instock | 9.77 | -0.471035 | 173.70 | 0.113 | 38.0 | 0.268657 | 559.70 | 15.44 | 36.722798 |
| 489 | 15776 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:41:39 | 2018-05-11 12:41:39 | Vin | Saumaize-Michelin Pouilly-Fuissé Les Ronchevat... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-les-ronchevat... | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4888 | 1 | 27.90 | 17 | instock | 14.85 | -0.159667 | 167.40 | 0.109 | 23.0 | 0.300000 | 474.30 | 22.32 | 33.467742 |
| 490 | 15779 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-03 16:37:27 | 2020-01-03 15:37:27 | Vin | Decelle-Villa Côte de Nuits Villages "Aux Mont... | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-cote-de-nuits-aux-montagnes-2014 | 2020-07-30 18:25:03 | 2020-07-30 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6567 | 1 | 28.40 | 28 | instock | 14.67 | -0.141564 | 312.40 | 0.204 | 39.0 | 0.328358 | 795.20 | 22.72 | 35.431338 |
| 491 | 15781 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:25:18 | 2020-01-18 09:25:18 | Vin | Clos du Mont-Olivet Lirac Rouge 2017 | Les vignes de Grenaches, de Syrahs et de Cinsa... | publish | closed | closed | clos-du-mont-olivet-lirac-2017 | 2020-07-30 18:35:03 | 2020-07-30 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6616 | 1 | 15.40 | 33 | instock | 7.88 | -0.612238 | 169.40 | 0.110 | 44.0 | 0.285714 | 508.20 | 12.32 | 36.038961 |
| 492 | 15783 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 17:55:16 | 2018-02-14 16:55:16 | Vin | Domaine de l'Hortus Val de Montferrand La Gran... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-la-grande-cuvee-blanc-2018 | 2020-06-25 09:30:12 | 2020-06-25 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4180 | 1 | 24.00 | 19 | instock | 12.28 | -0.300869 | 168.00 | 0.110 | 26.0 | 0.311111 | 456.00 | 19.20 | 36.041667 |
| 493 | 15784 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-14 16:09:44 | 2018-02-14 15:09:44 | Vin | Ollieux Romanis Corbières Blanc Cuvée Prestige... | Un nez riche et puissant avec un nez de fleurs... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-blanc... | 2020-08-21 10:55:01 | 2020-08-21 08:55:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4168 | 1 | 18.20 | 21 | instock | 9.40 | -0.510862 | 145.60 | 0.095 | 29.0 | 0.320000 | 382.20 | 14.56 | 35.439560 |
| 494 | 15785 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-14 16:02:48 | 2018-02-14 15:02:48 | Vin | Ollieux Romanis Corbières Rouge Cuvée Prestige... | Une robe rouge grenat soutenue, le nez se comp... | publish | closed | closed | ollieux-romanis-corbieres-cuvee-prestige-2017 | 2020-08-22 16:25:03 | 2020-08-22 14:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4167 | 1 | 14.30 | 16 | instock | 7.24 | -0.652064 | 100.10 | 0.065 | 23.0 | 0.358974 | 228.80 | 11.44 | 36.713287 |
| 495 | 15786 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 16:39:22 | 2018-02-14 15:39:22 | Vin | Ollieux Romanis Corbières Classique 2018 | Un petit vin chaleureux et ensoleillé expriman... | publish | closed | closed | ollieux-romanis-corbieres-classique-2018 | 2020-08-11 17:55:02 | 2020-08-11 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4170 | 1 | 9.00 | 28 | instock | 4.51 | -0.843954 | 81.00 | 0.053 | 37.0 | 0.276923 | 252.00 | 7.20 | 37.361111 |
| 496 | 15787 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 10:36:10 | 2018-02-13 09:36:10 | Vin | Emile Boeckel Pinot Noir Barriques Oberpfoelle... | Vin légèrement boisé, aux tanins soyeux, riche... | publish | closed | closed | emile-boeckel-pinot-noir-barriques-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4106 | 1 | 12.60 | 24 | instock | 6.64 | -0.713613 | 113.40 | 0.074 | 33.0 | 0.315789 | 302.40 | 10.08 | 34.126984 |
| 497 | 15790 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2020-01-23 11:23:58 | 2020-01-23 10:23:58 | Vin | Weingut Besson-Strasser Zürich Räuschling 2018 | Cépage rare, cultivé uniquement en Suisse-alle... | publish | closed | closed | weingut-besson-strasser-zurich-rauschling-2018 | 2020-05-18 09:30:15 | 2020-05-18 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6626 | 1 | 33.20 | 11 | instock | 16.47 | 0.032223 | 332.00 | 0.216 | 21.0 | 0.625000 | 365.20 | 26.56 | 37.989458 |
| 498 | 15791 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2020-01-23 11:39:24 | 2020-01-23 10:39:24 | Vin | Weingut Besson-Strasser Zürich Fumé 2017 | Assemblage équilibré entre Chardonnay et Räusc... | publish | closed | closed | weingut-besson-strasser-zurich-fume-2017 | 2020-08-11 11:25:02 | 2020-08-11 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6627 | 1 | 41.80 | 4 | instock | 22.24 | 0.343592 | 167.20 | 0.109 | 8.0 | 0.666667 | 167.20 | 33.44 | 33.492823 |
| 499 | 15792 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:46:11 | 2020-01-23 10:46:11 | Vin | Weingut Besson-Strasser Zürich Blauer Zweigelt... | <span title="">Avec un peu d'air, le vin dévoi... | publish | closed | closed | weingut-besson-strasser-zurich-blauer-zweigelt... | 2020-04-01 09:30:15 | 2020-04-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6628 | 1 | 32.20 | 7 | instock | 16.80 | -0.003983 | 161.00 | 0.105 | 12.0 | 0.526316 | 225.40 | 25.76 | 34.782609 |
| 500 | 15793 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-01-23 11:53:21 | 2020-01-23 10:53:21 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chol... | <span title="">Le nez est ouvert, parfumé de c... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chol... | 2020-06-09 15:52:32 | 2020-06-09 13:52:32 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6629 | 1 | 37.70 | 10 | instock | 19.48 | 0.195148 | 188.50 | 0.123 | 15.0 | 0.400000 | 377.00 | 30.16 | 35.411141 |
| 501 | 15794 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2020-01-23 12:06:12 | 2020-01-23 11:06:12 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Chlo... | <span title="">Des fruits rouges des bois en b... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-chlo... | 2020-08-21 18:25:02 | 2020-08-21 16:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6632 | 1 | 52.70 | 0 | outofstock | 26.41 | 0.738233 | 105.40 | 0.069 | 2.0 | 2.000000 | 0.00 | 42.16 | 37.357685 |
| 502 | 15795 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-23 12:04:38 | 2020-01-23 11:04:38 | Vin | Weingut Besson-Strasser Zürich Pinot Noir Albi... | <span title="">Frais, profond, fumé et en même... | publish | closed | closed | weingut-besson-strasser-zurich-pinot-noir-albi... | 2020-02-22 09:00:16 | 2020-02-22 08:00:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6631 | 1 | 47.20 | 10 | instock | 24.39 | 0.539102 | 330.40 | 0.215 | 17.0 | 0.518519 | 472.00 | 37.76 | 35.407839 |
| 503 | 15797 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-01-30 16:47:30 | 2019-01-30 15:47:30 | Vin | Planeta Sicilia Etna Bianco 2018 | Un vin frais et minéral aux arômes de fleur d'... | publish | closed | closed | planeta-sicilia-etna-bianco-2018 | 2020-08-22 09:25:02 | 2020-08-22 07:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5696 | 1 | 17.50 | 24 | instock | 9.49 | -0.536206 | 122.50 | 0.080 | 31.0 | 0.254545 | 420.00 | 14.00 | 32.214286 |
| 504 | 15801 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-13 15:10:06 | 2018-04-13 13:10:06 | Vin | François Bergeret Hautes Côtes de Beaune Blanc... | La robe est jaune avec des reflets dorés. Le n... | publish | closed | closed | francois-bergeret-hautes-cotes-de-beaune-blanc... | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4610 | 1 | 13.10 | 34 | instock | 6.50 | -0.695510 | 131.00 | 0.085 | 44.0 | 0.256410 | 445.40 | 10.48 | 37.977099 |
| 505 | 15807 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-05-11 14:59:33 | 2018-05-11 12:59:33 | Vin | Jacqueson Rully Blanc 1er Cru La Pucelle 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-blanc-1er-cru-la-pucelle-2018 | 2020-08-26 09:35:02 | 2020-08-26 07:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4891 | 1 | 27.90 | 8 | instock | 14.70 | -0.159667 | 111.60 | 0.073 | 12.0 | 0.400000 | 223.20 | 22.32 | 34.139785 |
| 506 | 15808 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-11 15:10:59 | 2018-05-11 13:10:59 | Vin | Jacqueson Rully Rouge 1er Cru Les Cloux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-cloux-2018 | 2020-05-07 12:14:58 | 2020-05-07 10:14:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4893 | 1 | 27.90 | 21 | instock | 14.99 | -0.159667 | 279.00 | 0.182 | 31.0 | 0.384615 | 585.90 | 22.32 | 32.840502 |
| 507 | 15810 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-11-02 14:01:31 | 2019-11-02 13:01:31 | Vin | Le Pas de l'Escalette IGP Pays d'Hérault Les C... | Très élégant, fin et minéral, aux arômes inten... | publish | closed | closed | le-pas-de-lescalette-igp-pays-dherault-les-cla... | 2020-08-21 11:35:02 | 2020-08-21 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6328 | 1 | 22.40 | 16 | instock | 11.23 | -0.358798 | 156.80 | 0.102 | 23.0 | 0.358974 | 358.40 | 17.92 | 37.332589 |
| 508 | 15811 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-19 15:17:59 | 2018-04-19 13:17:59 | Vin | Domaine de la Monardière Vacqueyras Les Deux M... | Précédé par une belle robe carmin, il exhale d... | publish | closed | closed | domaine-de-la-monardiere-vacqueyras-les-deux-m... | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4799 | 1 | 14.90 | 23 | instock | 7.39 | -0.630340 | 104.30 | 0.068 | 30.0 | 0.264151 | 342.70 | 11.92 | 38.003356 |
| 509 | 15812 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-01-30 16:24:13 | 2019-01-30 15:24:13 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc Ré... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-rese... | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5693 | 1 | 13.00 | 29 | instock | 6.52 | -0.699131 | 117.00 | 0.076 | 38.0 | 0.268657 | 377.00 | 10.40 | 37.307692 |
| 510 | 15813 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-13 09:57:24 | 2018-02-13 08:57:24 | Vin | Paul Ginglinger Riesling Drei Exa 2018 | Drei Exa fait référence à son village d'origin... | publish | closed | closed | paul-ginglinger-riesling-drei-exa-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4099 | 1 | 12.80 | 40 | instock | 6.41 | -0.706372 | 179.20 | 0.117 | 54.0 | 0.297872 | 512.00 | 10.24 | 37.402344 |
| 511 | 15818 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-03-13 14:17:23 | 2019-03-13 13:17:23 | Vin | Parcé Frères Collioure Rouge Petit Gus 2018 | <div>Un Collioure avec beaucoup de finesse, au... | publish | closed | closed | parce-freres-collioure-rouge-petit-gus-2018 | 2020-08-27 15:55:02 | 2020-08-27 13:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5764 | 1 | 12.90 | 20 | instock | 6.33 | -0.702752 | 103.20 | 0.067 | 28.0 | 0.333333 | 258.00 | 10.32 | 38.662791 |
| 512 | 15829 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 11:06:30 | 2018-02-16 10:06:30 | Vin | Xavier Frissant Touraine Les Roses du Clos 2018 | <p id="u9899-5">Elaboré à partir d'un cépage o... | publish | closed | closed | xavier-frissant-touraine-roses-du-clos-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4221 | 1 | 12.80 | 42 | instock | 6.48 | -0.706372 | 166.40 | 0.109 | 55.0 | 0.268041 | 537.60 | 10.24 | 36.718750 |
| 513 | 15834 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-07-16 10:22:33 | 2019-07-16 08:22:33 | Vin | Domaine de Vaccelli Ajaccio Blanc Sirocco 2017 | Belle robe cristalline, or pâle aux reflets ve... | publish | closed | closed | domaine-de-vaccelli-ajaccio-blanc-sirocco-2017 | 2020-05-15 21:10:30 | 2020-05-15 19:10:30 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6137 | 1 | 46.00 | 7 | instock | 24.00 | 0.495655 | 276.00 | 0.180 | 13.0 | 0.600000 | 322.00 | 36.80 | 34.782609 |
| 514 | 15839 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-27 13:15:12 | 2018-02-27 12:15:12 | Vin | Domaine Sérol Côte Roannaise Les Millerands 2018 | Rouge grenat brillant intense. Arômes complexe... | publish | closed | closed | domaine-serol-cote-roannaise-millerands-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4270 | 1 | 15.50 | 22 | instock | 8.25 | -0.608617 | 155.00 | 0.101 | 32.0 | 0.370370 | 341.00 | 12.40 | 33.467742 |
| 515 | 15845 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 12:43:23 | 2020-04-25 10:43:23 | Vin | Château Jean Faure Saint-Emilion Grand Cru 2016 | Velouté, profond, racé, beaucoup de sève. Très... | publish | closed | closed | chateau-jean-faure-saint-emilion-grand-cru-2016 | 2020-07-20 17:09:23 | 2020-07-20 15:09:23 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6926 | 1 | 49.90 | 12 | instock | 27.07 | 0.636857 | 449.10 | 0.293 | 21.0 | 0.545455 | 598.80 | 39.92 | 32.189379 |
| 516 | 15848 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-04-17 09:23:13 | 2018-04-17 07:23:13 | Vin | Bernard Baudry Chinon Rouge Le Clos Guillot 2017 | Le Clos Guillot est un vin raffiné. Ses arômes... | publish | closed | closed | bernard-baudry-chinon-rouge-clos-guillot-2017 | 2020-08-26 18:25:03 | 2020-08-26 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4646 | 1 | 21.50 | 27 | instock | 10.89 | -0.391383 | 215.00 | 0.140 | 37.0 | 0.312500 | 580.50 | 17.20 | 36.686047 |
| 517 | 15849 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-13 16:23:55 | 2018-04-13 14:23:55 | Vin | Bernard Baudry Chinon Rouge Les Grézeaux 2017 | Les Grézeaux est un vin concentré avec une mat... | publish | closed | closed | bernard-baudry-chinon-rouge-les-grezeaux-2017 | 2020-08-01 09:35:03 | 2020-08-01 07:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4621 | 1 | 16.50 | 36 | instock | 8.53 | -0.572411 | 198.00 | 0.129 | 48.0 | 0.285714 | 594.00 | 13.20 | 35.378788 |
| 518 | 15850 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-13 16:14:05 | 2018-04-13 14:14:05 | Vin | Bernard Baudry Chinon Rouge Les Granges 2018 | Les Granges est un vin fruité et gourmand à dé... | publish | closed | closed | bernard-baudry-chinon-rouge-les-granges-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4620 | 1 | 11.90 | 28 | instock | 6.03 | -0.738957 | 154.70 | 0.101 | 41.0 | 0.376812 | 333.20 | 9.52 | 36.659664 |
| 519 | 15856 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2019-03-28 15:10:42 | 2019-03-28 14:10:42 | Vin | Domaine de Montbourgeau Côtes du Jura Poulsard... | Ce vin présente une jolie robe rubis, limpide ... | publish | closed | closed | montbourgeau-cotes-du-jura-poulsard-2018 | 2020-08-27 09:30:12 | 2020-08-27 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5904 | 1 | 18.80 | 27 | instock | 9.32 | -0.489138 | 244.40 | 0.159 | 40.0 | 0.388060 | 507.60 | 15.04 | 38.031915 |
| 520 | 15857 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 16:26:27 | 2019-03-28 15:26:27 | Vin | Domaine de Montbourgeau L'Etoile En Banode 2016 | Un grand charme sur le volume, la chaleur rayo... | publish | closed | closed | domaine-de-montbourgeau-letoile-vin-jaune-2016 | 2020-07-07 15:35:03 | 2020-07-07 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5906 | 1 | 19.80 | 38 | instock | 9.72 | -0.452933 | 217.80 | 0.142 | 49.0 | 0.252874 | 752.40 | 15.84 | 38.636364 |
| 521 | 15859 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-18 22:12:03 | 2018-04-18 20:12:03 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Cuv... | La Cuvée Jacques est un rouge de Loire jolimen... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-cuv... | 2020-07-30 11:35:03 | 2020-07-30 09:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4758 | 1 | 24.30 | 35 | instock | 12.93 | -0.290007 | 291.60 | 0.190 | 47.0 | 0.292683 | 850.50 | 19.44 | 33.487654 |
| 522 | 15860 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-10-31 13:33:53 | 2018-10-31 12:33:53 | Vin | Domaine Chambeyron Côtes du Rhône 2017 | Vin pulpeux sur des notes de fruits noirs, de ... | publish | closed | closed | chambeyron-cotes-du-rhone-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5519 | 1 | 12.90 | 35 | instock | 7.00 | -0.702752 | 167.70 | 0.109 | 48.0 | 0.313253 | 451.50 | 10.32 | 32.170543 |
| 523 | 15861 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-10-31 13:52:29 | 2018-10-31 12:52:29 | Vin | Domaine Chambeyron Côte Rôtie L'Angéline 2017 | L'Angéline séduit par sa trame ronde et souple... | publish | closed | closed | domaine-chambeyron-cote-rotie-angeline-2017 | 2020-08-25 10:35:02 | 2020-08-25 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5522 | 1 | 48.40 | 8 | instock | 26.26 | 0.582549 | 193.60 | 0.126 | 12.0 | 0.400000 | 387.20 | 38.72 | 32.179752 |
| 524 | 15862 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:55:02 | 2018-10-31 12:55:02 | Vin | Domaine Chambeyron Côte Rôtie Lancement 2017 | De belles notes de tabac, des épices et une to... | publish | closed | closed | domaine-chambeyron-cote-rotie-lancement-2017 | 2020-08-21 17:05:03 | 2020-08-21 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5523 | 1 | 60.40 | 9 | instock | 31.83 | 1.017017 | 362.40 | 0.236 | 15.0 | 0.500000 | 543.60 | 48.32 | 34.126656 |
| 525 | 15863 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-31 13:45:06 | 2018-10-31 12:45:06 | Vin | Domaine Chambeyron Côte Rôtie La Chavarine 2017 | La Chavarine présente un nez de violette et de... | publish | closed | closed | domaine-chambeyron-cote-rotie-chavarine-2017 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5520 | 1 | 38.60 | 12 | instock | 19.15 | 0.227734 | 347.40 | 0.227 | 21.0 | 0.545455 | 463.20 | 30.88 | 37.985751 |
| 526 | 15864 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-10-31 13:58:13 | 2018-10-31 12:58:13 | Vin | Domaine Chambeyron Condrieu Vernon 2018 | L'abricot et les épices confèrent au nez un ca... | publish | closed | closed | domaine-chambeyron-condrieu-vernon-2018 | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5524 | 1 | 38.60 | 9 | instock | 19.74 | 0.227734 | 231.60 | 0.151 | 15.0 | 0.500000 | 347.40 | 30.88 | 36.075130 |
| 527 | 15868 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-07-17 09:30:42 | 2018-07-17 07:30:42 | Vin | David Duband Côtes de Nuits Villages 2017 | Les raisins sont ramassés manuellement, triés ... | publish | closed | closed | duband-cotes-de-nuits-villages-2017 | 2020-07-01 18:55:03 | 2020-07-01 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5000 | 1 | 27.30 | 26 | instock | 14.53 | -0.181390 | 218.40 | 0.142 | 34.0 | 0.266667 | 709.80 | 21.84 | 33.470696 |
| 528 | 15869 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 09:53:48 | 2018-07-17 07:53:48 | Vin | David Duband Morey-Saint-Denis 2017 | Robe vermillon avec des reflets violines. Le n... | publish | closed | closed | david-duband-morey-saint-denis-2017 | 2019-12-31 09:30:15 | 2019-12-31 08:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5003 | 1 | 48.70 | 4 | instock | 24.16 | 0.593411 | 97.40 | 0.064 | 6.0 | 0.400000 | 194.80 | 38.96 | 37.987680 |
| 529 | 15870 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-07-17 10:14:28 | 2018-07-17 08:14:28 | Vin | David Duband Nuits-Saint-Georges 2017 | Une robe élégante aux reflets roses et brillan... | publish | closed | closed | david-duband-nuits-saint-georges-2017 | 2020-07-01 10:55:03 | 2020-07-01 08:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5006 | 1 | 48.70 | 5 | instock | 24.91 | 0.593411 | 194.80 | 0.127 | 9.0 | 0.571429 | 243.50 | 38.96 | 36.062628 |
| 530 | 15871 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2018-07-17 10:07:09 | 2018-07-17 08:07:09 | Vin | David Duband Vosne Romanée 2017 | La robe est d'un beau rouge carmin, brillante ... | publish | closed | closed | david-duband-vosne-romanee-2017 | 2020-08-05 17:45:03 | 2020-08-05 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5004 | 1 | 59.40 | 4 | instock | 29.77 | 0.980811 | 118.80 | 0.077 | 6.0 | 0.400000 | 237.60 | 47.52 | 37.352694 |
| 531 | 15875 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:41:12 | 2018-04-13 13:41:12 | Vin | Gilbert Picq Chablis En Vaudécorse 2017 | Superbe fruité et beaucoup d'éclat. Attaque ro... | publish | closed | closed | gilbert-picq-chablis-en-vaudecorse-2017 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4614 | 1 | 19.00 | 23 | instock | 10.31 | -0.481897 | 133.00 | 0.087 | 30.0 | 0.264151 | 437.00 | 15.20 | 32.171053 |
| 532 | 15879 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:36:38 | 2018-04-18 09:36:38 | Vin | François Baur Pinot Noir Sang Du Dragon 2017 | Une très belle intensité de fruits mûrs, et de... | publish | closed | closed | francois-baur-pinot-noir-sang-du-dragon-2017 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4723 | 1 | 29.00 | 19 | instock | 15.43 | -0.119841 | 174.00 | 0.113 | 25.0 | 0.272727 | 551.00 | 23.20 | 33.491379 |
| 533 | 15880 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 11:31:10 | 2018-04-18 09:31:10 | Vin | François Baur Pinot Gris Herrenweg de Turckhei... | <p class="nez">C'est un vin plein de noblesse ... | publish | closed | closed | francois-baur-pinot-gris-herrenweg-de-turckhei... | 2020-08-25 18:45:02 | 2020-08-25 16:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4722 | 1 | 13.70 | 18 | instock | 6.72 | -0.673787 | 109.60 | 0.071 | 26.0 | 0.363636 | 246.60 | 10.96 | 38.686131 |
| 534 | 15881 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-19 13:52:18 | 2018-04-19 11:52:18 | Vin | Maurice Schoech Gewurztraminer 2018 | Ce sont des vignes âgées situées autour d’Amme... | publish | closed | closed | maurice-schoech-gewurztraminer-2018 | 2020-08-27 17:55:02 | 2020-08-27 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4786 | 1 | 12.10 | 32 | instock | 6.56 | -0.731716 | 145.20 | 0.095 | 44.0 | 0.315789 | 387.20 | 9.68 | 32.231405 |
| 535 | 15887 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-05-02 15:00:54 | 2020-05-02 13:00:54 | Vin | Domaine Jamet Côte Rôtie Fructus Voluptas 2018 | Pour cette cuvée, Jean-Paul Jamet recherche un... | publish | closed | closed | jamet-cote-rotie-fructus-voluptas-2018 | 2020-08-14 18:15:03 | 2020-08-14 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7025 | 1 | 69.00 | 8 | instock | 34.22 | 1.328385 | 345.00 | 0.225 | 13.0 | 0.476190 | 552.00 | 55.20 | 38.007246 |
| 536 | 15891 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-05-02 14:53:40 | 2020-05-02 12:53:40 | Vin | Camin Larredya Jurançon Sec La Virada 2018 | L'exotisme du nez est complété par d'élégantes... | publish | closed | closed | camin-larredya-jurancon-sec-la-virada-2018 | 2020-08-26 17:35:02 | 2020-08-26 15:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7023 | 1 | 27.50 | 23 | instock | 14.21 | -0.174149 | 247.50 | 0.161 | 32.0 | 0.327273 | 632.50 | 22.00 | 35.409091 |
| 537 | 15892 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 11:22:53 | 2019-04-18 09:22:53 | Vin | Domaine Labranche Laffont Pacherenc du Vic-Bil... | Ce Pacherenc sec est issu de deux cépages embl... | publish | closed | closed | domaine-labranche-laffont-pacherenc-vic-bihl-s... | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5960 | 1 | 12.70 | 40 | instock | 6.36 | -0.709993 | 152.40 | 0.099 | 52.0 | 0.260870 | 508.00 | 10.16 | 37.401575 |
| 538 | 15895 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2019-04-18 09:23:08 | 2019-04-18 07:23:08 | Vin | Clos du Prieur Terrasses du Larzac 2018 | Le Clos du Prieur séduit d’emblée par son côté... | publish | closed | closed | clos-du-prieur-terrasses-du-larzac-2018 | 2020-08-07 16:15:03 | 2020-08-07 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5956 | 1 | 17.20 | 32 | instock | 8.80 | -0.547067 | 206.40 | 0.135 | 44.0 | 0.315789 | 550.40 | 13.76 | 36.046512 |
| 539 | 15910 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-03-28 10:59:43 | 2019-03-28 09:59:43 | Vin | Thevenet Quintaine Viré-Clessé La Bongran 2015 | C’est dans cette cuvée la pleine expression du... | publish | closed | closed | thevenet-quintaine-vire-clesse-la-bongran-2015 | 2020-08-14 10:45:02 | 2020-08-14 08:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5896 | 1 | 24.70 | 23 | instock | 12.76 | -0.275525 | 271.70 | 0.177 | 34.0 | 0.385965 | 568.10 | 19.76 | 35.425101 |
| 540 | 15921 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:31:35 | 2019-01-15 15:31:35 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "D... | <span style="float: none; background-color: tr... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-d-... | 2020-08-25 14:00:04 | 2020-08-25 12:00:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5618 | 1 | 71.30 | 5 | instock | 36.84 | 1.411658 | 285.20 | 0.186 | 9.0 | 0.571429 | 356.50 | 57.04 | 35.413745 |
| 541 | 15922 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 16:42:01 | 2019-01-15 15:42:01 | Vin | Albert Boxler Riesling Grand Cru Sommerberg "E... | Le Sommerberg "E" provient d'une sélection par... | publish | closed | closed | albert-boxler-riesling-grand-cru-sommerberg-e-... | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5619 | 1 | 71.30 | 10 | instock | 38.31 | 1.411658 | 356.50 | 0.232 | 15.0 | 0.400000 | 713.00 | 57.04 | 32.836606 |
| 542 | 15923 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-01-15 16:06:19 | 2019-01-15 15:06:19 | Vin | Albert Boxler Pinot Gris Grand Cru Sommerberg ... | Le Pinot Gris Grand Cru Sommerberg W 2016, du ... | publish | closed | closed | albert-boxler-pinot-gris-sommerberg-w-2016 | 2020-08-25 14:00:05 | 2020-08-25 12:00:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5615 | 1 | 56.40 | 5 | instock | 30.60 | 0.872194 | 225.60 | 0.147 | 9.0 | 0.571429 | 282.00 | 45.12 | 32.180851 |
| 543 | 15927 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-17 12:32:07 | 2018-05-17 10:32:07 | Vin | Domaine La Croix Belle Côtes de Thongue Rouge ... | Robe pourpre, profonde et brillante. Nez compl... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rouge-... | 2020-08-14 14:45:02 | 2020-08-14 12:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4929 | 1 | 16.70 | 26 | instock | 8.28 | -0.565170 | 133.60 | 0.087 | 34.0 | 0.266667 | 434.20 | 13.36 | 38.023952 |
| 544 | 15928 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-17 11:53:08 | 2018-05-17 09:53:08 | Vin | Cave de Castelmaure Corbières Rouge Vigneron 2018 | Le Rouge Vigneron de la cave de Castelmaure of... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-vigneron-2018 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4923 | 1 | 7.00 | 0 | outofstock | 3.65 | -0.916365 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 5.60 | 34.821429 |
| 545 | 15930 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-15 14:52:59 | 2019-01-15 13:52:59 | Vin | Domaine Weinbach Riesling Cuvée Colette 2018 | Le Riesling Cuvée Colette, hommage à la mère e... | publish | closed | closed | domaine-weinbach-riesling-colette-2018 | 2020-08-27 14:35:02 | 2020-08-27 12:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5609 | 1 | 38.60 | 7 | instock | 20.54 | 0.227734 | 193.00 | 0.126 | 12.0 | 0.526316 | 270.20 | 30.88 | 33.484456 |
| 546 | 15933 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:24:35 | 2018-04-17 14:24:35 | Vin | Domaine de Joy Côtes de Gascogne Blanc Moelleu... | Ce vin possède une belle robe jaune aux reflet... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-blanc-moelleu... | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4681 | 1 | 7.10 | 33 | instock | 3.56 | -0.912744 | 85.20 | 0.056 | 45.0 | 0.307692 | 234.30 | 5.68 | 37.323944 |
| 547 | 15934 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-04-17 16:16:34 | 2018-04-17 14:16:34 | Vin | Domaine de Joy Côtes de Gascogne Envie de Joy ... | Cette cuvée offre une robe pâle aux reflets ve... | publish | closed | closed | domaine-de-joy-cotes-de-gascogne-envie-de-joy-... | 2020-08-10 09:30:12 | 2020-08-10 07:30:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4680 | 1 | 6.30 | 35 | instock | 3.29 | -0.941709 | 75.60 | 0.049 | 47.0 | 0.292683 | 220.50 | 5.04 | 34.722222 |
| 548 | 15940 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-03-02 10:30:04 | 2018-03-02 09:30:04 | Champagne | Champagne Egly-Ouriet Grand Cru Millésimé 2008 | Issu d’un assemblage de 70% de Pinot Noir du g... | publish | closed | closed | champagne-egly-ouriet-grand-cru-millesime-2008 | 2020-03-07 11:18:45 | 2020-03-07 10:18:45 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4352 | 1 | 225.00 | 0 | outofstock | 137.81 | 6.976466 | 2475.00 | 1.614 | 11.0 | 2.000000 | 0.00 | 180.00 | 23.438889 |
| 549 | 15941 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 14:26:52 | 2018-02-12 13:26:52 | Vin | Domaine de la Jérôme Côtes du Rhône Village 201 | Un vin opulent, à la texture onctueuse, et tou... | publish | closed | closed | jerome-cotes-du-rhone-2018 | 2020-06-25 14:00:03 | 2020-06-25 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4074 | 1 | 12.70 | 30 | instock | 6.76 | -0.709993 | 152.40 | 0.099 | 42.0 | 0.333333 | 381.00 | 10.16 | 33.464567 |
| 550 | 15944 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-01-15 14:47:12 | 2019-01-15 13:47:12 | Vin | Domaine Weinbach Gewurztraminer Cuvée Théo 2018 | Ce joli Gewurztraminer se révèle subtil et com... | publish | closed | closed | weinbach-gewurztraminer-theo-2018 | 2020-08-06 10:45:03 | 2020-08-06 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5608 | 1 | 30.50 | 11 | instock | 15.29 | -0.065532 | 183.00 | 0.119 | 17.0 | 0.428571 | 335.50 | 24.40 | 37.336066 |
| 551 | 15945 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-01-15 15:05:12 | 2019-01-15 14:05:12 | Vin | Domaine Weinbach Riesling Grand Cru Schlossber... | Ce Riesling est issu de vignes cultivées dans ... | publish | closed | closed | domaine-weinbach-riesling-schlossberg-catherin... | 2020-07-28 09:45:03 | 2020-07-28 07:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5611 | 1 | 63.40 | 14 | instock | 33.74 | 1.125634 | 507.20 | 0.331 | 22.0 | 0.444444 | 887.60 | 50.72 | 33.477918 |
| 552 | 15946 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-28 16:42:41 | 2018-02-28 15:42:41 | Vin | Domaine de l'Idylle Savoie Mondeuse Le Tithoni... | Belle robe rouge pourpre aux reflets violets. ... | publish | closed | closed | domaine-de-lidylle-savoie-mondeuse-2018 | 2020-07-01 09:30:15 | 2020-07-01 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4307 | 1 | 10.90 | 37 | instock | 5.80 | -0.775163 | 152.60 | 0.100 | 51.0 | 0.318182 | 403.30 | 8.72 | 33.486239 |
| 553 | 15949 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-28 16:37:33 | 2018-02-28 15:37:33 | Vin | Domaine de l'Idylle Roussette de Savoie Anne d... | Grand vin racé, rond, belle robe jaune claire,... | publish | closed | closed | domaine-de-lidylle-savoie-roussette-2018 | 2020-06-02 16:55:03 | 2020-06-02 14:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4306 | 1 | 10.70 | 52 | instock | 5.31 | -0.782404 | 160.50 | 0.105 | 67.0 | 0.252101 | 556.40 | 8.56 | 37.967290 |
| 554 | 15951 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-05-16 15:54:52 | 2019-05-16 13:54:52 | Vin | Jacqueson Rully Rouge 1er Cru Les Preaux 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-1er-cru-les-preaux-2018 | 2020-08-07 15:55:03 | 2020-08-07 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6073 | 1 | 24.50 | 29 | instock | 12.41 | -0.282766 | 220.50 | 0.144 | 38.0 | 0.268657 | 710.50 | 19.60 | 36.683673 |
| 555 | 15952 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-11 15:05:32 | 2018-05-11 13:05:32 | Vin | Jacqueson Rully Rouge Les Chaponnières 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | jacqueson-rully-rouge-les-chaponnieres-2018 | 2020-08-27 15:15:02 | 2020-08-27 13:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4892 | 1 | 20.10 | 30 | instock | 10.90 | -0.442071 | 180.90 | 0.118 | 39.0 | 0.260870 | 603.00 | 16.08 | 32.213930 |
| 556 | 15953 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:08:13 | 2018-02-12 13:08:13 | Vin | Château de Vaudieu Châteauneuf-du-Pape Rouge 2015 | Elégance, suavité, et gourmandise. Déjà délici... | publish | closed | closed | vaudieu-chateauneuf-2015 | 2020-08-27 16:05:03 | 2020-08-27 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4071 | 1 | 33.20 | 19 | instock | 17.15 | 0.032223 | 332.00 | 0.216 | 29.0 | 0.416667 | 630.80 | 26.56 | 35.429217 |
| 557 | 15958 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-06-02 09:28:24 | 2018-06-02 07:28:24 | Vin | Château Turcaud Bordeaux Rouge 2016 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-2016 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4963 | 1 | 7.00 | 41 | instock | 3.44 | -0.916365 | 91.00 | 0.059 | 54.0 | 0.273684 | 287.00 | 5.60 | 38.571429 |
| 558 | 15966 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 13:08:24 | 2018-02-12 12:08:24 | Vin | Oratoire Saint Martin Cairanne Rouge Réserve d... | Réserve des Seigneurs affiche un nez somptueux... | publish | closed | closed | oratoire-reserve-seigneurs-rouge-2017 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4064 | 1 | 14.40 | 32 | instock | 7.66 | -0.648443 | 144.00 | 0.094 | 42.0 | 0.270270 | 460.80 | 11.52 | 33.506944 |
| 559 | 15967 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 13:17:53 | 2018-02-12 12:17:53 | Vin | Oratoire Saint Martin Cairanne Rouge Haut Cous... | Il s'impose par une matière pulpeuse, soyeuse,... | publish | closed | closed | oratoire-saint-martin-cairanne-haut-coustias-2016 | 2020-08-14 18:35:02 | 2020-08-14 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4066 | 1 | 20.80 | 27 | instock | 10.42 | -0.416727 | 166.40 | 0.109 | 35.0 | 0.258065 | 561.60 | 16.64 | 37.379808 |
| 560 | 16003 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2019-02-15 17:47:54 | 2019-02-15 16:47:54 | Vin | Triennes IGP Méditerranée Rouge Merlot 2016 | Nez aux notes de griottes et bourgeon de cassi... | publish | closed | closed | triennes-igp-mediterranee-rouge-merlot-2016 | 2020-07-30 15:05:03 | 2020-07-30 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5739 | 1 | 10.70 | 13 | instock | 5.53 | -0.782404 | 42.80 | 0.028 | 17.0 | 0.266667 | 139.10 | 8.56 | 35.397196 |
| 561 | 16004 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-06-07 16:27:25 | 2018-06-07 14:27:25 | Vin | Château du Couvent Pomerol 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-du-couvent-pomerol-2017 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4974 | 1 | 23.00 | 10 | instock | 12.12 | -0.337075 | 115.00 | 0.075 | 15.0 | 0.400000 | 230.00 | 18.40 | 34.130435 |
| 562 | 16005 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-06-07 17:05:04 | 2018-06-07 15:05:04 | Vin | Château Lafont Menaut Pessac-Leognan Rouge 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-lafont-menaut-pessac-leognan-rouge-2017 | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4976 | 1 | 16.45 | 0 | outofstock | 8.07 | -0.574222 | 115.15 | 0.075 | 7.0 | 2.000000 | 0.00 | 13.16 | 38.677812 |
| 563 | 16010 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-18 11:45:30 | 2018-04-18 09:45:30 | Vin | François Baur Riesling Grand Cru Brand Clos De... | Un grand Rieling, élevé 10 mois en foudre cent... | publish | closed | closed | francois-baur-riesling-grand-cru-brand-clos-de... | 2020-08-22 14:55:03 | 2020-08-22 12:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4725 | 1 | 23.40 | 13 | instock | 12.33 | -0.322592 | 140.40 | 0.092 | 19.0 | 0.375000 | 304.20 | 18.72 | 34.134615 |
| 564 | 16011 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:50:44 | 2018-09-01 13:50:44 | Vin | Nouvelle-Zélande Marlborough Momo Pinot Noir 2016 | <span style="float: none; background-color: tr... | publish | closed | closed | nouvelle-zelande-marlborough-momo-pinot-noir-2016 | 2020-06-22 11:35:02 | 2020-06-22 09:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5382 | 1 | 22.80 | 30 | instock | 11.54 | -0.344316 | 228.00 | 0.149 | 40.0 | 0.285714 | 684.00 | 18.24 | 36.732456 |
| 565 | 16013 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 15:32:24 | 2018-02-12 14:32:24 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-blanc-2019 | 2020-08-19 17:45:02 | 2020-08-19 15:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4086 | 1 | 16.40 | 30 | instock | 8.13 | -0.576032 | 180.40 | 0.118 | 41.0 | 0.309859 | 492.00 | 13.12 | 38.033537 |
| 566 | 16014 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:21:03 | 2018-02-12 14:21:03 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-r-2017 | 2020-08-22 10:05:02 | 2020-08-22 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4084 | 1 | 23.20 | 23 | instock | 11.63 | -0.329833 | 162.40 | 0.106 | 30.0 | 0.264151 | 533.60 | 18.56 | 37.338362 |
| 567 | 16022 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-09-01 15:39:38 | 2018-09-01 13:39:38 | Vin | Nouvelle-Zélande Marlborough Momo Sauvignon Bl... | Ce vin illustre l'éclat et l'intensité que peu... | publish | closed | closed | nouvelle-zelande-marlborough-momo-sauvignon-bl... | 2020-04-24 21:49:56 | 2020-04-24 19:49:56 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5380 | 1 | 18.00 | 27 | instock | 9.77 | -0.518103 | 180.00 | 0.117 | 37.0 | 0.312500 | 486.00 | 14.40 | 32.152778 |
| 568 | 16023 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-15 15:35:09 | 2018-02-15 14:35:09 | Vin | Domaine Montrose Côtes de Thongue Rouge 2018 | Montrose rouge à une robe grenat aux reflets v... | publish | closed | closed | montrose-cotes-de-thongue-2018 | 2020-08-25 18:35:02 | 2020-08-25 16:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4207 | 1 | 6.70 | 30 | instock | 3.63 | -0.927227 | 100.50 | 0.066 | 45.0 | 0.400000 | 201.00 | 5.36 | 32.276119 |
| 569 | 16024 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 15:43:45 | 2018-02-15 14:43:45 | Vin | Domaine Montrose Côtes de Thongue Rosé 2019 | Un joli nez de petits fruits rouges, d'agrumes... | publish | closed | closed | domaine-montrose-cotes-de-thongue-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4208 | 1 | 7.60 | 35 | instock | 3.77 | -0.894642 | 76.00 | 0.050 | 45.0 | 0.250000 | 266.00 | 6.08 | 37.993421 |
| 570 | 16028 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2019-05-16 15:51:57 | 2019-05-16 13:51:57 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Blanc 2019 | Assemblage à forte majorité de Grenache Blanc ... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-blanc-2019 | 2020-08-14 17:35:03 | 2020-08-14 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6072 | 1 | 13.60 | 3 | instock | 7.03 | -0.677408 | 13.60 | 0.009 | 4.0 | 0.285714 | 40.80 | 10.88 | 35.386029 |
| 571 | 16029 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-12 11:38:55 | 2018-02-12 10:38:55 | Vin | Clos du Mont-Olivet Côtes-du-Rhône Vieilles Vi... | Assemblage à forte majorité de Grenache complé... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-vieilles-vi... | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4056 | 1 | 12.70 | 38 | instock | 6.36 | -0.709993 | 139.70 | 0.091 | 49.0 | 0.252874 | 482.60 | 10.16 | 37.401575 |
| 572 | 16030 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 11:06:11 | 2018-02-12 10:06:11 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Blanc ... | Ce Châteauneuf-du-Pape blanc offre une robe pâ... | publish | closed | closed | mont-olivet-chateauneuf-pape-blanc-2019 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4052 | 1 | 33.70 | 0 | outofstock | 18.11 | 0.050326 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 26.96 | 32.826409 |
| 573 | 16031 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2020-01-18 10:30:35 | 2020-01-18 09:30:35 | Vin | Clos du Mont-Olivet Vins de Pays du Gard Rive ... | <span style="display: inline !important; float... | publish | closed | closed | clos-du-mont-olivet-igp-gard-rive-droite-2018 | 2020-08-07 10:15:02 | 2020-08-07 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6617 | 1 | 9.90 | 33 | instock | 5.22 | -0.811369 | 108.90 | 0.071 | 44.0 | 0.285714 | 326.70 | 7.92 | 34.090909 |
| 574 | 16034 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-09-25 15:35:26 | 2018-09-25 13:35:26 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2007 | Cette bouteille présente une puissance mesurée... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2007 | 2020-08-21 14:25:03 | 2020-08-21 12:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5465 | 1 | 54.80 | 12 | instock | 28.60 | 0.814265 | 438.40 | 0.286 | 20.0 | 0.500000 | 657.60 | 43.84 | 34.762774 |
| 575 | 16037 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-11 14:52:59 | 2018-05-11 12:52:59 | Vin | Saumaize-Michelin Pouilly-Fuissé Vignes Blanch... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-pouilly-fuisse-vignes-blanch... | 2020-07-11 17:05:05 | 2020-07-11 15:05:05 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4889 | 1 | 25.30 | 16 | instock | 12.55 | -0.253802 | 151.80 | 0.099 | 22.0 | 0.315789 | 404.80 | 20.24 | 37.994071 |
| 576 | 16038 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-05-11 14:55:23 | 2018-05-11 12:55:23 | Vin | Saumaize-Michelin Saint-Véran 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | saumaize-michelin-saint-veran-2018 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4890 | 1 | 17.00 | 19 | instock | 8.78 | -0.554308 | 136.00 | 0.089 | 27.0 | 0.347826 | 323.00 | 13.60 | 35.441176 |
| 577 | 16039 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-12 11:56:27 | 2018-02-12 10:56:27 | Vin | Mourgues du Grès Costières de Nîmes Galets Dor... | Galets Blancs dégage un parfum époustouflant d... | publish | closed | closed | mourgues-galets-dores-2019 | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4057 | 1 | 8.70 | 29 | instock | 4.36 | -0.854815 | 121.80 | 0.079 | 43.0 | 0.388889 | 252.30 | 6.96 | 37.356322 |
| 578 | 16041 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 10:09:03 | 2018-02-12 09:09:03 | Vin | Pierre Gaillard Côte Rôtie 2018 | Ce vin exprime la diversité et l'équilibre ent... | publish | closed | closed | pierre-gaillard-cote-rotie-2018 | 2020-08-03 09:55:03 | 2020-08-03 07:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4045 | 1 | 42.60 | 5 | instock | 22.01 | 0.372556 | 127.80 | 0.083 | 8.0 | 0.461538 | 213.00 | 34.08 | 35.416667 |
| 579 | 16042 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 09:54:27 | 2018-02-12 08:54:27 | Vin | Pierre Gaillard Cornas 2017 | Une jolie robe grenat avec des reflets violacé... | publish | closed | closed | pierre-gaillard-cornas-2017 | 2020-08-14 10:15:02 | 2020-08-14 08:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4042 | 1 | 31.20 | 15 | instock | 15.48 | -0.040188 | 249.60 | 0.163 | 23.0 | 0.421053 | 468.00 | 24.96 | 37.980769 |
| 580 | 16043 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 10:41:11 | 2018-02-12 09:41:11 | Vin | Pierre Gaillard Saint-Joseph Rouge 2018 | Un Saint-Joseph plein de fruits et de gourmand... | publish | closed | closed | pierre-gaillard-saint-joseph-2018 | 2020-08-26 14:05:02 | 2020-08-26 12:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4049 | 1 | 19.30 | 25 | instock | 10.27 | -0.471035 | 193.00 | 0.126 | 35.0 | 0.333333 | 482.50 | 15.44 | 33.484456 |
| 581 | 16044 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:34:08 | 2018-02-12 09:34:08 | Vin | Pierre Gaillard Saint-Joseph Rouge Clos de Cum... | D'une belle intensité, Clos de Cuminaille a de... | publish | closed | closed | pierre-gaillard-saint-joseph-cuminaille-2018 | 2020-08-14 17:45:03 | 2020-08-14 15:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4048 | 1 | 22.80 | 24 | instock | 11.78 | -0.344316 | 273.60 | 0.178 | 36.0 | 0.400000 | 547.20 | 18.24 | 35.416667 |
| 582 | 16045 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-12 10:58:41 | 2018-02-12 09:58:41 | Vin | Jeanne Gaillard IGP Collines Rhodaniennes Syra... | Terre de Mandrin est vinifié par la fille de P... | publish | closed | closed | pierre-gaillard-syrah-terre-mandrin-2018 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4051 | 1 | 7.70 | 0 | outofstock | 4.14 | -0.891021 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 6.16 | 32.792208 |
| 583 | 16046 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2020-01-18 10:50:11 | 2020-01-18 09:50:11 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rouge-saint-f... | 2020-08-12 11:45:02 | 2020-08-12 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6620 | 1 | 51.00 | 11 | instock | 27.14 | 0.676684 | 357.00 | 0.233 | 18.0 | 0.482759 | 561.00 | 40.80 | 33.480392 |
| 584 | 16047 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-05-03 12:52:23 | 2018-05-03 10:52:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Blanc 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-blanc-2018 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4862 | 1 | 9.90 | 35 | instock | 4.86 | -0.811369 | 128.70 | 0.084 | 48.0 | 0.313253 | 346.50 | 7.92 | 38.636364 |
| 585 | 16053 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:14:00 | 2018-04-17 13:14:00 | Vin | Domaine Pellé Menetou Salon Blanc Le Carroir 2018 | Incisif et épuré... Ce terroir unique de l’app... | publish | closed | closed | pelle-menetou-salon-blanc-le-carroir-2018 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4669 | 1 | 20.20 | 21 | instock | 10.65 | -0.438450 | 141.40 | 0.092 | 28.0 | 0.285714 | 424.20 | 16.16 | 34.096535 |
| 586 | 16056 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 15:32:02 | 2018-04-17 13:32:02 | Vin | Domaine Pellé Sancerre Blanc La Croix Au Garde... | Depuis 1982, le domaine cultive 5 hectares de ... | publish | closed | closed | pelle-sancerre-blanc-la-croix-au-garde-2018 | 2020-08-24 09:30:13 | 2020-08-24 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4674 | 1 | 19.00 | 24 | instock | 9.91 | -0.481897 | 133.00 | 0.087 | 31.0 | 0.254545 | 456.00 | 15.20 | 34.802632 |
| 587 | 16057 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-17 15:29:17 | 2018-04-17 13:29:17 | Vin | Domaine Pellé Sancerre Rouge La Croix Au Garde... | Plantées sur des caillotes, cette vigne nous o... | publish | closed | closed | pelle-sancerre-rouge-la-croix-au-garde-2017 | 2020-07-07 10:05:02 | 2020-07-07 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4673 | 1 | 19.80 | 17 | instock | 10.33 | -0.452933 | 99.00 | 0.065 | 22.0 | 0.256410 | 336.60 | 15.84 | 34.785354 |
| 588 | 16062 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-05-15 09:25:03 | 2018-05-15 07:25:03 | Vin | Domaine Brintet Mercurey Blanc Vieilles Vignes... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | domaine-brintet-mercurey-blanc-vieilles-vignes... | 2020-08-05 09:30:14 | 2020-08-05 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4899 | 1 | 21.20 | 18 | instock | 11.17 | -0.402245 | 127.20 | 0.083 | 24.0 | 0.285714 | 381.60 | 16.96 | 34.139151 |
| 589 | 16063 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-15 09:32:58 | 2018-05-15 07:32:58 | Vin | Domaine Brintet Mercurey Rouge Vieilles Vignes... | Ce Mercurey rouge possède un charme particulie... | publish | closed | closed | domaine-brintet-mercurey-rouge-vieilles-vignes... | 2020-08-25 16:05:02 | 2020-08-25 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4900 | 1 | 20.80 | 11 | instock | 10.75 | -0.416727 | 104.00 | 0.068 | 16.0 | 0.370370 | 228.80 | 16.64 | 35.396635 |
| 590 | 16065 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 13:40:34 | 2018-02-28 12:40:34 | Vin | Domaine Hauvette Les Baux de Provence Cornalin... | Un grand vin des Baux de Provence élégant, pui... | publish | closed | closed | domaine-hauvette-cornaline-2014 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4287 | 1 | 38.60 | 8 | instock | 20.34 | 0.227734 | 270.20 | 0.176 | 15.0 | 0.608696 | 308.80 | 30.88 | 34.132124 |
| 591 | 16066 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-28 13:33:10 | 2018-02-28 12:33:10 | Vin | Domaine Hauvette Les Baux de Provence Amethyst... | Un vin rouge profond, minéral et comme tous le... | publish | closed | closed | hauvette-baux-provence-amethyste-2017 | 2020-07-16 15:45:03 | 2020-07-16 13:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4286 | 1 | 69.80 | 6 | instock | 36.06 | 1.357350 | 209.40 | 0.137 | 9.0 | 0.400000 | 418.80 | 55.84 | 35.422636 |
| 592 | 16067 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:29:36 | 2020-02-22 13:29:36 | Vin | Domaine Hauvette IGP Alpilles Dolia 2013 | Ce blanc, composé de clairette, roussanne et m... | publish | closed | closed | domaine-hauvette-igp-alpilles-dolia-2013 | 2020-02-22 14:37:18 | 2020-02-22 13:37:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6666 | 1 | 48.50 | 7 | instock | 25.56 | 0.586169 | 291.00 | 0.190 | 13.0 | 0.600000 | 339.50 | 38.80 | 34.123711 |
| 593 | 16068 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2020-02-22 14:28:32 | 2020-02-22 13:28:32 | Vin | Domaine Hauvette IGP Alpilles Jaspe 2017 | Un magnifique blanc 100% Roussanne avec une fr... | publish | closed | closed | domaine-hauvette-igp-alpilles-jaspe-2017 | 2020-08-26 16:05:02 | 2020-08-26 14:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6665 | 1 | 27.70 | 16 | instock | 14.60 | -0.166908 | 138.50 | 0.090 | 21.0 | 0.270270 | 443.20 | 22.16 | 34.115523 |
| 594 | 16069 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-12 14:34:12 | 2018-02-12 13:34:12 | Vin | Plateau des Chênes Lirac 2015 | Doté d’une robe pourpre intense, ce vin dévelo... | publish | closed | closed | plateau-chenes-lirac-2015 | 2020-08-24 11:45:03 | 2020-08-24 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4075 | 1 | 14.70 | 35 | instock | 7.97 | -0.637581 | 147.00 | 0.096 | 45.0 | 0.250000 | 514.50 | 11.76 | 32.227891 |
| 595 | 16071 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-01-18 10:21:05 | 2020-01-18 09:21:05 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape 2018 | Exceptionnelle à bien des égards, l’année 2017... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-2018 | 2020-07-11 15:05:04 | 2020-07-11 13:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6615 | 1 | 32.80 | 12 | instock | 16.95 | 0.017741 | 196.80 | 0.128 | 18.0 | 0.400000 | 393.60 | 26.24 | 35.403963 |
| 596 | 16072 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:14:36 | 2018-04-19 11:14:36 | Vin | Clos du Mont-Olivet Lirac Rosé Farel 2019 | Ce vin est le résultat de la rencontre de deux... | publish | closed | closed | clos-du-mont-olivet-cotes-du-rhone-rose-farel-... | 2020-08-27 10:20:37 | 2020-08-27 08:20:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4778 | 1 | 13.90 | 20 | instock | 6.89 | -0.666546 | 125.10 | 0.082 | 29.0 | 0.367347 | 278.00 | 11.12 | 38.039568 |
| 597 | 16077 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-07-24 09:33:52 | 2019-07-24 07:33:52 | Vin | Domaine Giudicelli Patrimonio Rouge 2016 | 100% Nielluccio ce Patrimonio présente un nez ... | publish | closed | closed | domaine-giudicelli-patrimonio-rouge-2016 | 2020-08-25 11:55:02 | 2020-08-25 09:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6207 | 1 | 25.20 | 22 | instock | 12.89 | -0.257422 | 226.80 | 0.148 | 31.0 | 0.339623 | 554.40 | 20.16 | 36.061508 |
| 598 | 16081 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-04-17 10:38:36 | 2018-04-17 08:38:36 | Vin | Pierre Martin Sancerre Les Monts Damnés 2018 | Un Sancerre blanc équilibré, complexe et minér... | publish | closed | closed | pierre-martin-sancerre-les-monts-damnes-2018 | 2020-05-19 18:01:19 | 2020-05-19 16:01:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4662 | 1 | 20.80 | 13 | instock | 10.96 | -0.416727 | 124.80 | 0.081 | 19.0 | 0.375000 | 270.40 | 16.64 | 34.134615 |
| 599 | 16093 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 14:48:58 | 2018-02-13 13:48:58 | Vin | Planeta Sicilia Etna Rosso 2018 | Etna Rosso est un vin charnu mais garde beauco... | publish | closed | closed | 8planeta-sicilia-etna-rosso-2018 | 2020-06-23 18:35:03 | 2020-06-23 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4158 | 1 | 18.50 | 36 | instock | 9.94 | -0.500000 | 240.50 | 0.157 | 49.0 | 0.305882 | 666.00 | 14.80 | 32.837838 |
| 600 | 16094 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-01-30 16:54:02 | 2019-01-30 15:54:02 | Vin | Planeta Sicilia Noto Santa Cecilia 2016 | Un grand Sicilien, plein de fruits noirs et d'... | publish | closed | closed | planeta-sicilia-santa-cecilia-2016 | 2020-07-24 17:25:04 | 2020-07-24 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5697 | 1 | 29.90 | 14 | instock | 15.29 | -0.087256 | 149.50 | 0.097 | 19.0 | 0.303030 | 418.60 | 23.92 | 36.078595 |
| 601 | 16096 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2019-07-26 09:53:23 | 2019-07-26 07:53:23 | Vin | Planeta Sicilia Eruzione 1614 2017 | <span title="">L'histoire de l'Etna est parsem... | publish | closed | closed | planeta-sicilia-eruzione-1614-2017 | 2020-08-19 17:55:02 | 2020-08-19 15:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6221 | 1 | 23.50 | 22 | instock | 12.02 | -0.318972 | 164.50 | 0.107 | 29.0 | 0.274510 | 517.00 | 18.80 | 36.063830 |
| 602 | 16097 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-20 10:32:11 | 2018-02-20 09:32:11 | Vin | Parcé Frères IGP Pays d'Oc Zoé Viognier 2019 | <p id="product_reference">Le Viognier donne un... | publish | closed | closed | parce-freres-igp-pays-oc-zoe-viognier-2019 | 2020-07-25 10:05:02 | 2020-07-25 08:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4245 | 1 | 8.90 | 27 | instock | 4.69 | -0.847574 | 80.10 | 0.052 | 36.0 | 0.285714 | 240.30 | 7.12 | 34.129213 |
| 603 | 16119 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-04-17 21:44:24 | 2018-04-17 19:44:24 | Vin | Albert Mann Riesling Grand Cru Schlossberg 2018 | Ce vin porte une robe de couleur vert-jaune in... | publish | closed | closed | albert-mann-riesling-grand-cru-schlossberg-2018 | 2020-07-28 09:30:17 | 2020-07-28 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4711 | 1 | 55.40 | 6 | instock | 29.77 | 0.835988 | 221.60 | 0.145 | 10.0 | 0.500000 | 332.40 | 44.32 | 32.829422 |
| 604 | 16120 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-13 09:31:50 | 2018-02-13 08:31:50 | Vin | Paul Ginglinger Muscat Caroline 2018 | Caroline est constituée pour majorité de musca... | publish | closed | closed | paul-ginglinger-muscat-caroline-2018 | 2020-08-20 09:30:16 | 2020-08-20 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4095 | 1 | 12.60 | 42 | instock | 6.31 | -0.713613 | 163.80 | 0.107 | 55.0 | 0.268041 | 529.20 | 10.08 | 37.400794 |
| 605 | 16121 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-01-31 14:39:08 | 2019-01-31 13:39:08 | Vin | Albert Mann Riesling Cuvée Albert 2017 | Il se présente avec une magnifique robe intens... | publish | closed | closed | albert-mann-riesling-albert-2017 | 2020-07-18 10:35:02 | 2020-07-18 08:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5711 | 1 | 25.00 | 23 | instock | 12.40 | -0.264663 | 250.00 | 0.163 | 33.0 | 0.357143 | 575.00 | 20.00 | 38.000000 |
| 606 | 16124 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-14 15:43:42 | 2018-02-14 14:43:42 | Vin | Ollieux Romanis Corbières Boutenac Atal Sia 2017 | Atal Sia «ainsi soit-il» en languedocien expri... | publish | closed | closed | ollieux-romanis-corbieres-boutenac-atal-sia-2017 | 2020-08-14 15:05:03 | 2020-08-14 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4166 | 1 | 20.50 | 20 | instock | 10.27 | -0.427589 | 184.50 | 0.120 | 29.0 | 0.367347 | 410.00 | 16.40 | 37.378049 |
| 607 | 16129 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-10-09 15:27:50 | 2018-10-09 13:27:50 | Vin | Decelle-Villa Nuits-Saint-Georges Rouge 2016 | La couleur éclate en un rouge profond et sombr... | publish | closed | closed | decelle-villa-nuits-st-georges-rouge-2016 | 2020-06-13 15:55:07 | 2020-06-13 13:55:07 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5487 | 1 | 43.50 | 0 | outofstock | 23.37 | 0.405141 | 391.50 | 0.255 | 9.0 | 2.000000 | 0.00 | 34.80 | 32.844828 |
| 608 | 16130 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-10-09 15:22:19 | 2018-10-09 13:22:19 | Vin | Decelle-Villa Meursault 2018 | De couleur Jaune paille brillante, le Meursaul... | publish | closed | closed | decelle-villa-meursault-2018 | 2020-08-26 11:25:02 | 2020-08-26 09:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5486 | 1 | 49.50 | 9 | instock | 26.09 | 0.622375 | 247.50 | 0.161 | 14.0 | 0.434783 | 445.50 | 39.60 | 34.116162 |
| 609 | 16131 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 15:11:51 | 2018-10-09 13:11:51 | Vin | Decelle-Villa Savigny-Lès-Beaune Blanc 2018 | <span style="display: inline !important; float... | publish | closed | closed | decelle-villa-savigny-blanc-2018 | 2020-03-27 09:30:27 | 2020-03-27 08:30:27 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5485 | 1 | 33.40 | 14 | instock | 16.57 | 0.039464 | 334.00 | 0.218 | 24.0 | 0.526316 | 467.60 | 26.72 | 37.986527 |
| 610 | 16132 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-04-18 21:55:53 | 2018-04-18 19:55:53 | Vin | Domaine de Montgilet Vin de France Grolleau 2019 | C'est un vin de soif, léger et épicé. Le Groll... | publish | closed | closed | domaine-de-montgilet-vin-de-france-grolleau-2019 | 2020-08-25 09:30:13 | 2020-08-25 07:30:13 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4755 | 1 | 7.40 | 47 | instock | 3.98 | -0.901883 | 103.60 | 0.068 | 61.0 | 0.259259 | 347.80 | 5.92 | 32.770270 |
| 611 | 16133 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-16 15:01:36 | 2019-05-16 13:01:36 | Vin | Borie La Vitarèle Pays d'Hérault Les Cigales 2019 | La Cuvée des Cigales est composée de 50% de Gr... | publish | closed | closed | borie-la-vitarele-pays-herault-cigales-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6070 | 1 | 9.30 | 30 | instock | 4.95 | -0.833092 | 102.30 | 0.067 | 41.0 | 0.309859 | 279.00 | 7.44 | 33.467742 |
| 612 | 16135 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2020-04-25 13:22:38 | 2020-04-25 11:22:38 | Vin | Mouthes Le Bihan Côtes de Duras L'Aimé Chai 2015 | Belle robe jeune à dominante rubis soutenue. N... | publish | closed | closed | mouthes-le-bihan-aime-chai-2015 | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6930 | 1 | 8.40 | 28 | instock | 4.34 | -0.865677 | 75.60 | 0.049 | 37.0 | 0.276923 | 235.20 | 6.72 | 35.416667 |
| 613 | 16138 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-04-18 20:43:01 | 2018-04-18 18:43:01 | Vin | Camin Larredya Jurançon Moelleux Costat Darrer... | Ce vin de plaisir se caractérise par son fruit... | publish | closed | closed | camin-larredya-jurancon-moelleux-costat-darrer... | 2020-08-26 17:35:03 | 2020-08-26 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4734 | 1 | 15.30 | 27 | instock | 8.22 | -0.615858 | 122.40 | 0.080 | 35.0 | 0.258065 | 413.10 | 12.24 | 32.843137 |
| 614 | 16144 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-03-10 14:03:32 | 2020-03-10 13:03:32 | Vin | Château Simone Palette Blanc 2017 | Les vins blancs sont d’une suprême élégance. D... | publish | closed | closed | chateau-simone-blanc-2017 | 2020-08-27 09:30:14 | 2020-08-27 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6751 | 1 | 46.50 | 7 | instock | 24.51 | 0.513758 | 279.00 | 0.182 | 13.0 | 0.600000 | 325.50 | 37.20 | 34.112903 |
| 615 | 16146 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-10-09 17:08:52 | 2018-10-09 15:08:52 | Vin | Château de la Selve Coteaux de l'Ardèche Blanc... | <div>\n\nRobe jaune citron clair de belle bril... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-st... | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5504 | 1 | 13.80 | 19 | instock | 6.77 | -0.670167 | 110.40 | 0.072 | 27.0 | 0.347826 | 262.20 | 11.04 | 38.677536 |
| 616 | 16147 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-07 16:05:51 | 2019-03-07 15:05:51 | Vin | Château de la Selve Vin de France Petite Selve... | <div>\n\nRobe rubis soutenue. Nez aux arômes i... | publish | closed | closed | chateau-de-la-selve-vdf-petite-selve-2019 | 2020-08-22 14:35:03 | 2020-08-22 12:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5753 | 1 | 10.10 | 31 | instock | 5.01 | -0.804127 | 101.00 | 0.066 | 41.0 | 0.277778 | 313.10 | 8.08 | 37.995050 |
| 617 | 16148 | 0 | 0 | 0 | 0.0 | 36.0 | taxable | 2.0 | 2018-05-03 13:20:05 | 2018-05-03 11:20:05 | Vin | Château De La Selve IGP Coteaux de l'Ardèche M... | <div>\n\nUn rosé minéral, fruité et d’une gran... | publish | closed | closed | chateau-de-la-selve-igp-coteaux-de-lardeche-ma... | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4867 | 1 | 9.90 | 121 | instock | 4.86 | -0.811369 | 356.40 | 0.232 | 157.0 | 0.258993 | 1197.90 | 7.92 | 38.636364 |
| 618 | 16149 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 13:45:43 | 2018-05-03 11:45:43 | Vin | Triennes IGP Méditerranée Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | triennes-igp-mediterranee-rose-2019 | 2020-08-27 17:25:03 | 2020-08-27 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4870 | 1 | 9.30 | 0 | outofstock | 4.81 | -0.833092 | 148.80 | 0.097 | 16.0 | 2.000000 | 0.00 | 7.44 | 35.349462 |
| 619 | 16151 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 13:49:18 | 2018-04-13 11:49:18 | Vin | Catherine et Claude Maréchal Bourgogne Aligoté... | Tout en justesse de goût, son bouquet est frui... | publish | closed | closed | catherine-et-claude-marechal-bourgogne-aligote... | 2020-06-23 14:00:03 | 2020-06-23 12:00:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4601 | 1 | 16.10 | 24 | instock | 8.57 | -0.586894 | 112.70 | 0.073 | 31.0 | 0.254545 | 386.40 | 12.88 | 33.462733 |
| 620 | 16152 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2020-02-22 14:01:55 | 2020-02-22 13:01:55 | Vin | Catherine et Claude Maréchal Pommard La Chaniè... | Ce Pommard a une robe d’un beau rubis, typique... | publish | closed | closed | catherine-et-claude-marechal-pommard-la-chanie... | 2020-07-16 11:45:03 | 2020-07-16 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6663 | 1 | 50.40 | 6 | instock | 26.04 | 0.654960 | 302.40 | 0.197 | 12.0 | 0.666667 | 302.40 | 40.32 | 35.416667 |
| 621 | 16153 | 0 | 0 | 0 | 0.0 | 4.0 | taxable | 2.0 | 2018-02-28 13:27:18 | 2018-02-28 12:27:18 | Vin | Château de Cazeneuve Pic Saint-Loup Le Sang Du... | Robe sombre, nez très expressif, en bouche un ... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-le-sang-du... | 2020-06-12 16:35:03 | 2020-06-12 14:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4285 | 1 | 41.00 | 5 | instock | 22.03 | 0.314627 | 164.00 | 0.107 | 9.0 | 0.571429 | 205.00 | 32.80 | 32.835366 |
| 622 | 16154 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 13:21:40 | 2018-02-28 12:21:40 | Vin | Château de Cazeneuve Pic Saint-Loup Le Roc Des... | Un vin pulpeux et séduisant, à la matière soye... | publish | closed | closed | chateau-de-cazeneuve-pic-saint-loup-roc-des-ma... | 2020-08-22 10:25:02 | 2020-08-22 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4283 | 1 | 27.00 | 0 | outofstock | 13.25 | -0.192252 | 216.00 | 0.141 | 8.0 | 2.000000 | 0.00 | 21.60 | 38.657407 |
| 623 | 16155 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-05-17 12:35:04 | 2018-05-17 10:35:04 | Vin | Domaine La Croix Belle Côtes de Thongue Blanc ... | Robe dorée et brillante. Le nez intense évoque... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-blanc-... | 2020-07-21 18:55:04 | 2020-07-21 16:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4930 | 1 | 17.50 | 29 | instock | 9.31 | -0.536206 | 210.00 | 0.137 | 41.0 | 0.342857 | 507.50 | 14.00 | 33.500000 |
| 624 | 16159 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-04-26 11:08:24 | 2019-04-26 09:08:24 | Vin | Domaine La Croix Belle Côtes de Thongue Rosé L... | Robe très pâle, couleur rosée aux légers refle... | publish | closed | closed | domaine-la-croix-belle-cotes-de-thongue-rose-g... | 2020-07-29 16:45:03 | 2020-07-29 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6042 | 1 | 8.50 | 25 | instock | 4.57 | -0.862056 | 76.50 | 0.050 | 34.0 | 0.305085 | 212.50 | 6.80 | 32.794118 |
| 625 | 16160 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-14 17:43:30 | 2018-02-14 16:43:30 | Vin | Domaine de l'Hortus Pic Saint-Loup La Bergerie... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-la-bergerie-rose-2019 | 2020-08-12 15:45:02 | 2020-08-12 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4178 | 1 | 11.50 | 21 | instock | 6.18 | -0.753440 | 115.00 | 0.075 | 31.0 | 0.384615 | 241.50 | 9.20 | 32.826087 |
| 626 | 16166 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-14 17:48:16 | 2018-02-14 16:48:16 | Vin | Domaine de l'Hortus Pic Saint-Loup La Grande C... | <div class="row">\n<div class="features-value ... | publish | closed | closed | hortus-pic-saint-loup-grande-cuvee-2018 | 2020-08-27 10:08:37 | 2020-08-27 08:08:37 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4179 | 1 | 24.00 | 0 | outofstock | 13.02 | -0.300869 | 144.00 | 0.094 | 6.0 | 2.000000 | 0.00 | 19.20 | 32.187500 |
| 627 | 16180 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-12 15:36:40 | 2018-02-12 14:36:40 | Vin | Rimauresq Côtes de Provence Cru Classé Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-rose-2019 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4087 | 1 | 14.40 | 15 | instock | 7.81 | -0.648443 | 100.80 | 0.066 | 22.0 | 0.378378 | 216.00 | 11.52 | 32.204861 |
| 628 | 16186 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-13 15:45:04 | 2018-04-13 13:45:04 | Vin | Alphonse Mellot Sancerre Blanc La Moussière 2018 | Il séduit d'emblée par sa pureté et sa franchi... | publish | closed | closed | alphonse-mellot-sancerre-blanc-la-moussiere-2018 | 2020-08-27 09:30:15 | 2020-08-27 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4615 | 1 | 24.00 | 16 | instock | 12.28 | -0.300869 | 168.00 | 0.110 | 23.0 | 0.358974 | 384.00 | 19.20 | 36.041667 |
| 629 | 16189 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-15 10:10:23 | 2018-02-15 09:10:23 | Vin | Le Pas de l'Escalette Languedoc Les Petits Pas... | Vin de gourmandise et de fraîcheur. Bouche trè... | publish | closed | closed | le-pas-de-lescalette-languedoc-petits-pas-2019 | 2020-08-27 11:45:02 | 2020-08-27 09:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4187 | 1 | 13.30 | 26 | instock | 6.67 | -0.688269 | 106.40 | 0.069 | 34.0 | 0.266667 | 345.80 | 10.64 | 37.312030 |
| 630 | 16190 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-15 10:04:42 | 2018-02-15 09:04:42 | Vin | Le Pas de l'Escalette Terrasses du Larzac Les ... | Gourmand, élégant, fruité aux senteurs de mûre... | publish | closed | closed | le-pas-de-lescalette-larzac-clapas-rouge-2018 | 2020-08-01 09:35:04 | 2020-08-01 07:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4186 | 1 | 16.60 | 29 | instock | 9.01 | -0.568791 | 182.60 | 0.119 | 40.0 | 0.318841 | 481.40 | 13.28 | 32.153614 |
| 631 | 16191 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-15 10:33:55 | 2018-02-15 09:33:55 | Vin | Le Pas de l'Escalette Coteaux du Languedoc Ze ... | Elaboré comme un blanc, Ze Rozé s'exprime sur ... | publish | closed | closed | le-pas-de-lescalette-coteaux-languedoc-ze-roze... | 2020-07-17 10:35:03 | 2020-07-17 08:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4190 | 1 | 12.10 | 27 | instock | 6.13 | -0.731716 | 121.00 | 0.079 | 37.0 | 0.312500 | 326.70 | 9.68 | 36.673554 |
| 632 | 16192 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-11-26 11:01:40 | 2018-11-26 10:01:40 | Vin | Le Pas de l'Escalette Terrasses du Larzac Le G... | Le Grand Pas est fruité, épicé, et rappellera ... | publish | closed | closed | le-pas-de-lescalette-terrasses-du-larzac-le-gr... | 2020-08-14 17:45:04 | 2020-08-14 15:45:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5566 | 1 | 27.50 | 12 | instock | 14.63 | -0.174149 | 137.50 | 0.090 | 17.0 | 0.344828 | 330.00 | 22.00 | 33.500000 |
| 633 | 16209 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-14 17:15:31 | 2018-02-14 16:15:31 | Vin | Maurel Cabardès Tradition 2017 | Un joli nez aux arômes de fruits rouges, de ca... | publish | closed | closed | maurel-cabardes-tradition-2017 | 2020-08-05 18:05:03 | 2020-08-05 16:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4174 | 1 | 5.70 | 43 | instock | 2.92 | -0.963432 | 74.10 | 0.048 | 56.0 | 0.262626 | 245.10 | 4.56 | 35.964912 |
| 634 | 16210 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-14 16:54:33 | 2018-02-14 15:54:33 | Vin | Maurel Pays d'Oc Chardonnay 2019 | Un très joli petit chardonnay qui nous révèle ... | publish | closed | closed | maurel-pays-oc-chardonnay-2019 | 2020-08-27 15:35:02 | 2020-08-27 13:35:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4172 | 1 | 5.70 | 31 | instock | 2.95 | -0.963432 | 68.40 | 0.045 | 43.0 | 0.324324 | 176.70 | 4.56 | 35.307018 |
| 635 | 16211 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-14 17:10:39 | 2018-02-14 16:10:39 | Vin | Maurel Pays d'Oc Chenin-Colombard 2019 | Ce vin d'une grande fraîcheur est élaboré à pa... | publish | closed | closed | maurel-pays-doc-chenin-colombard-2019 | 2020-08-07 17:35:03 | 2020-08-07 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4173 | 1 | 5.70 | 49 | instock | 2.97 | -0.963432 | 85.50 | 0.056 | 64.0 | 0.265487 | 279.30 | 4.56 | 34.868421 |
| 636 | 16213 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2019-03-15 10:24:21 | 2019-03-15 09:24:21 | Vin | Maurel Pays d'Oc Syrah 2019 | <div>Une Syrah fraîche et gouleyante. Une très... | publish | closed | closed | maurel-pays-d-oc-syrah-2019 | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5779 | 1 | 5.80 | 30 | instock | 2.88 | -0.959812 | 52.20 | 0.034 | 39.0 | 0.260870 | 174.00 | 4.64 | 37.931034 |
| 637 | 16229 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-18 22:15:13 | 2018-04-18 20:15:13 | Vin | Domaine Saint-Nicolas Fiefs Vendéens Rouge Ref... | Offrant à l'oeil une jolie robe d'un rubis ten... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-rouge-ref... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4759 | 1 | 16.90 | 26 | instock | 8.30 | -0.557929 | 219.70 | 0.143 | 39.0 | 0.400000 | 439.40 | 13.52 | 38.609467 |
| 638 | 16230 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2020-07-20 11:00:00 | 2020-07-20 09:00:00 | Vin | Domaine Saint-Nicolas Vin de France Blanc Les ... | Issu d'un assemblage de chenin blanc et de cha... | publish | closed | closed | domaine-saint-nicolas-fiefs-vendeens-blanc-les... | 2020-08-13 10:45:03 | 2020-08-13 08:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 7338 | 1 | 16.30 | 40 | instock | 8.00 | -0.579652 | 211.90 | 0.138 | 53.0 | 0.279570 | 652.00 | 13.04 | 38.650307 |
| 639 | 16237 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-13 14:13:53 | 2018-02-13 13:13:53 | Vin | Elian Daros Côtes du Marmandais Clos Baquey 2015 | <span id="u689-24">Clos Baquey</span> est tr... | publish | closed | closed | elian-daros-cotes-du-marmandais-clos-baquey-2015 | 2020-07-28 15:25:03 | 2020-07-28 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4153 | 1 | 29.00 | 30 | instock | 15.13 | -0.119841 | 261.00 | 0.170 | 39.0 | 0.260870 | 870.00 | 23.20 | 34.784483 |
| 640 | 16238 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-13 13:57:13 | 2018-02-13 12:57:13 | Vin | Elian Daros Côtes du Marmandais Chante Coucou ... | Vin structuré et complexe avec des arômes épic... | publish | closed | closed | elian-daros-cotes-du-marmandais-chante-coucou-... | 2020-08-27 10:25:57 | 2020-08-27 08:25:57 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4152 | 1 | 19.20 | 14 | instock | 9.52 | -0.474656 | 115.20 | 0.075 | 20.0 | 0.352941 | 268.80 | 15.36 | 38.020833 |
| 641 | 16239 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-04-17 16:36:10 | 2018-04-17 14:36:10 | Vin | Château Plaisance Fronton Rosé 2019 | Un magnifique rosé à la couleur pale, délicieu... | publish | closed | closed | chateau-plaisance-fronton-rose-2019 | 2020-08-27 17:15:02 | 2020-08-27 15:15:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4683 | 1 | 9.10 | 43 | instock | 4.84 | -0.840333 | 136.50 | 0.089 | 58.0 | 0.297030 | 391.30 | 7.28 | 33.516484 |
| 642 | 16244 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 13:09:12 | 2018-02-27 12:09:12 | Vin | Domaine Sérol Côte Roannaise Les Originelles 2019 | Rouge grenat intense aux reflets violacés. Arô... | publish | closed | closed | serol-cote-roannaise-originelles-2019 | 2020-07-08 15:55:04 | 2020-07-08 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4269 | 1 | 10.20 | 28 | instock | 5.32 | -0.800507 | 122.40 | 0.080 | 40.0 | 0.352941 | 285.60 | 8.16 | 34.803922 |
| 643 | 16246 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-28 14:46:15 | 2018-02-28 13:46:15 | Vin | Domaine de La Tour Du Bon Bandol Blanc 2019 | D’une couleur brillante de reflets vert à pail... | publish | closed | closed | la-tour-du-bon-bandol-blanc-2019 | 2020-08-26 15:55:03 | 2020-08-26 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4297 | 1 | 19.00 | 33 | instock | 10.31 | -0.481897 | 190.00 | 0.124 | 43.0 | 0.263158 | 627.00 | 15.20 | 32.171053 |
| 644 | 16247 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2019-09-10 11:33:37 | 2019-09-10 09:33:37 | Vin | Borie de Maurel Minervois Rouge Maxime 2003 | Maxime, c’est la puissance contenue, la force ... | publish | closed | closed | borie-de-maurel-minervois-rouge-maxime-2003 | 2020-05-13 17:25:04 | 2020-05-13 15:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6279 | 1 | 45.90 | 10 | instock | 22.77 | 0.492035 | 275.40 | 0.180 | 16.0 | 0.461538 | 459.00 | 36.72 | 37.990196 |
| 645 | 16255 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-05-03 12:58:34 | 2018-05-03 10:58:34 | Vin | Château Ollieux Romanis Corbières Rosé Classiq... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-ollieux-romanis-corbieres-rose-classiq... | 2020-07-20 17:47:47 | 2020-07-20 15:47:47 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4863 | 1 | 8.20 | 54 | instock | 4.11 | -0.872918 | 131.20 | 0.086 | 70.0 | 0.258065 | 442.80 | 6.56 | 37.347561 |
| 646 | 16256 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 12:02:37 | 2018-02-15 11:02:37 | Vin | Château de La Liquière Faugères Les Amandiers ... | Ample et rafraîchissant, ce vin lumineux dével... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 09:30:14 | 2020-08-26 07:30:14 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4197 | 1 | 9.40 | 32 | instock | 5.10 | -0.829471 | 122.20 | 0.080 | 45.0 | 0.337662 | 300.80 | 7.52 | 32.180851 |
| 647 | 16261 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 09:37:34 | 2018-04-17 07:37:34 | Vin | Bernard Baudry Chinon Blanc 2018 | Ce Chinon Blanc est un vin charmeur avec ses n... | publish | closed | closed | bernard-baudry-chinon-blanc-2018 | 2020-07-11 17:05:06 | 2020-07-11 15:05:06 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4649 | 1 | 16.50 | 18 | instock | 8.10 | -0.572411 | 115.50 | 0.075 | 25.0 | 0.325581 | 297.00 | 13.20 | 38.636364 |
| 648 | 16262 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-17 09:34:01 | 2018-04-17 07:34:01 | Vin | Bernard Baudry Chinon Blanc La Croix Boissée 2018 | Le terroir très calcaire donne à La Croix Bois... | publish | closed | closed | bernard-baudry-chinon-blanc-croix-boissee-2018 | 2020-08-20 09:30:17 | 2020-08-20 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4648 | 1 | 24.30 | 22 | instock | 12.68 | -0.290007 | 218.70 | 0.143 | 31.0 | 0.339623 | 534.60 | 19.44 | 34.773663 |
| 649 | 16263 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-15 10:36:35 | 2018-02-15 09:36:35 | Vin | Château de La Liquière Faugères Les Amandiers ... | Cette cuvée provient des jeunes vignes du doma... | publish | closed | closed | chateau-de-la-liquiere-faugeres-les-amandiers-... | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4191 | 1 | 9.30 | 30 | instock | 4.76 | -0.833092 | 111.60 | 0.073 | 42.0 | 0.333333 | 279.00 | 7.44 | 36.021505 |
| 650 | 16264 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-05-03 11:18:00 | 2019-05-03 09:18:00 | Vin | Château de La Liquière Faugères L'Ampoule 2019 | Le Cinsault s'exprime à merveille sur les terr... | publish | closed | closed | chateau-de-la-liquiere-faugeres-ampoule-2019 | 2020-08-24 18:15:03 | 2020-08-24 16:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6047 | 1 | 10.90 | 29 | instock | 5.58 | -0.775163 | 119.90 | 0.078 | 40.0 | 0.318841 | 316.10 | 8.72 | 36.009174 |
| 651 | 16265 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-15 10:18:39 | 2018-02-15 09:18:39 | Vin | Château de La Liquière Languedoc Blanc Les Ama... | Très flatteur et expressif, on y trouve des no... | publish | closed | closed | liquiere-languedoc-amandiers-blancs-2019 | 2020-08-25 18:25:03 | 2020-08-25 16:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4188 | 1 | 9.50 | 51 | instock | 5.06 | -0.825851 | 152.00 | 0.099 | 67.0 | 0.271186 | 484.50 | 7.60 | 33.421053 |
| 652 | 16269 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-16 15:52:37 | 2018-02-16 14:52:37 | Vin | Argentine Mendoza Alamos Chardonnay 2019 | Cet Alamos Chardonnay offre tous les attraits ... | publish | closed | closed | catena-zapata-mendoza-alamos-chardonnay-2019 | 2020-08-25 11:05:02 | 2020-08-25 09:05:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4232 | 1 | 11.10 | 37 | instock | 5.62 | -0.767922 | 133.20 | 0.087 | 49.0 | 0.279070 | 410.70 | 8.88 | 36.711712 |
| 653 | 16273 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-09-10 11:27:33 | 2019-09-10 09:27:33 | Vin | Borie de Maurel Minervois Rouge Esprit d'Autom... | Esprit d’automne fait figure d’entrée en matiè... | publish | closed | closed | borie-de-maurel-minervois-esprit-automne-2019 | 2020-08-12 17:25:03 | 2020-08-12 15:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6278 | 1 | 9.00 | 24 | instock | 4.65 | -0.843954 | 90.00 | 0.059 | 34.0 | 0.344828 | 216.00 | 7.20 | 35.416667 |
| 654 | 16274 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-05-03 13:09:18 | 2018-05-03 11:09:18 | Vin | Mourgues du Grès Costières de Nîmes Capitelles... | <div>Ample et concentré sur les fruits rouges ... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-capitelles... | 2020-08-04 18:55:02 | 2020-08-04 16:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4865 | 1 | 9.80 | 48 | instock | 5.16 | -0.814989 | 147.00 | 0.096 | 63.0 | 0.270270 | 470.40 | 7.84 | 34.183673 |
| 655 | 16275 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-12 12:12:28 | 2018-02-12 11:12:28 | Vin | Mourgues du Grès Costières de Nîmes Galets Ros... | Des senteurs de fruits rouges forment un préam... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-ros... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4059 | 1 | 8.70 | 34 | instock | 4.32 | -0.854815 | 139.20 | 0.091 | 50.0 | 0.380952 | 295.80 | 6.96 | 37.931034 |
| 656 | 16276 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-05-17 12:02:25 | 2018-05-17 10:02:25 | Vin | Cave de Castelmaure Corbières Rouge Grande Cuv... | Sa robe intense aux reflets violacés présente ... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-grande-cuv... | 2020-07-04 17:35:03 | 2020-07-04 15:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4924 | 1 | 12.80 | 24 | instock | 6.28 | -0.706372 | 89.60 | 0.058 | 31.0 | 0.254545 | 307.20 | 10.24 | 38.671875 |
| 657 | 16277 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:05:44 | 2018-05-17 10:05:44 | Vin | Cave de Castelmaure Corbières Rouge N°3 2017 | Un très grand Corbières qui allie volupté, pui... | publish | closed | closed | cave-de-castelmaure-corbieres-rouge-n3-2017 | 2020-06-11 11:15:03 | 2020-06-11 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4925 | 1 | 23.20 | 38 | instock | 11.39 | -0.329833 | 255.20 | 0.166 | 49.0 | 0.252874 | 881.60 | 18.56 | 38.631466 |
| 658 | 16280 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-05-17 12:42:03 | 2018-05-17 10:42:03 | Vin | Marcel Richaud Cairanne Rouge L'Ebrescade 2017 | <div>La bouche est ronde et dense pour cet Ebr... | publish | closed | closed | marcel-richaud-cairanne-rouge-lebrescade-2017 | 2020-07-17 14:45:03 | 2020-07-17 12:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4931 | 1 | 27.80 | 34 | instock | 15.08 | -0.163287 | 278.00 | 0.181 | 44.0 | 0.256410 | 945.20 | 22.24 | 32.194245 |
| 659 | 16281 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 12:59:29 | 2018-05-17 10:59:29 | Vin | Marcel Richaud Cairanne Rouge 2018 | Un nez marqué par de jolies notes de fruits no... | publish | closed | closed | marcel-richaud-cairanne-rouge-2018 | 2020-08-19 15:25:02 | 2020-08-19 13:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4933 | 1 | 18.40 | 24 | instock | 9.22 | -0.503621 | 202.40 | 0.132 | 35.0 | 0.372881 | 441.60 | 14.72 | 37.364130 |
| 660 | 16283 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-05-17 13:31:40 | 2018-05-17 11:31:40 | Vin | Domaine Rouge Garance Côtes du Rhône Feuille d... | Un vin flamboyant porté par l'énergie follicul... | publish | closed | closed | domaine-rouge-garance-cotes-du-rhone-feuille-d... | 2020-08-27 09:30:16 | 2020-08-27 07:30:16 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4937 | 1 | 9.90 | 26 | instock | 4.86 | -0.811369 | 108.90 | 0.071 | 37.0 | 0.349206 | 257.40 | 7.92 | 38.636364 |
| 661 | 16289 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-05-04 13:40:16 | 2018-05-04 11:40:16 | Vin | Tempier Bandol Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-rose-2019 | 2020-08-25 18:35:03 | 2020-08-25 16:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4876 | 1 | 22.80 | 0 | outofstock | 11.90 | -0.344316 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 18.24 | 34.758772 |
| 662 | 16292 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-05-03 12:46:23 | 2018-05-03 10:46:23 | Vin | Philippe Nusswitz Duché d'Uzès Orénia Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-duche-uzes-orenia-rose-2019 | 2020-08-25 15:55:03 | 2020-08-25 13:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4860 | 1 | 8.70 | 29 | instock | 4.63 | -0.854815 | 78.30 | 0.051 | 38.0 | 0.268657 | 252.30 | 6.96 | 33.477011 |
| 663 | 16295 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2018-02-15 14:05:06 | 2018-02-15 13:05:06 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Rosé très agréable, intense, floral et minéral... | publish | closed | closed | moulin-de-gassac-igp-pays-dherault-guilhem-ros... | 2020-08-27 18:55:03 | 2020-08-27 16:55:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4200 | 0 | 5.80 | 33 | instock | 3.12 | -0.959812 | 81.20 | 0.053 | 47.0 | 0.350000 | 191.40 | 4.64 | 32.758621 |
| 664 | 16296 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 15:13:25 | 2018-02-12 14:13:25 | Vin | Rimauresq Côtes de Provence Blanc Cru Classé "... | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-provence-r-blanc-2019 | 2020-05-30 10:46:29 | 2020-05-30 08:46:29 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4083 | 1 | 17.00 | 21 | instock | 8.78 | -0.554308 | 153.00 | 0.100 | 30.0 | 0.352941 | 357.00 | 13.60 | 35.441176 |
| 665 | 16304 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2019-01-30 16:32:42 | 2019-01-30 15:32:42 | Vin | Philippe Nusswitz IGP Cévènnes Rosé O Pale 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | philippe-nusswitz-igp-cevennes-opale-rose-2019 | 2020-08-22 16:15:03 | 2020-08-22 14:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5695 | 1 | 6.50 | 33 | instock | 3.53 | -0.934468 | 104.00 | 0.068 | 49.0 | 0.390244 | 214.50 | 5.20 | 32.115385 |
| 666 | 16305 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-10-09 14:32:21 | 2018-10-09 12:32:21 | Vin | Domaine Bulliat Beaujolais Blanc 2019 | Un joli beaujolais blanc tout en gourmandise e... | publish | closed | closed | domaine-bulliat-beaujolais-blanc-2019 | 2020-08-25 18:25:04 | 2020-08-25 16:25:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5479 | 1 | 10.20 | 38 | instock | 5.16 | -0.800507 | 122.40 | 0.080 | 50.0 | 0.272727 | 387.60 | 8.16 | 36.764706 |
| 667 | 16306 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-10-09 14:43:02 | 2018-10-09 12:43:02 | Vin | Domaine Bulliat Chiroubles Cuvée Félix 2019 | Un très joli Chiroubles, souple, élégant et tr... | publish | closed | closed | domaine-bulliat-chiroubles-2019 | 2020-08-25 15:05:03 | 2020-08-25 13:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5480 | 1 | 10.40 | 23 | instock | 5.21 | -0.793266 | 104.00 | 0.068 | 33.0 | 0.357143 | 239.20 | 8.32 | 37.379808 |
| 668 | 16307 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-27 11:02:05 | 2018-02-27 10:02:05 | Vin | Domaine Bulliat Morgon Le Colombier 2019 | Un très joli nez éclatant de fruits rouges. La... | publish | closed | closed | domaine-bulliat-morgon-colombier-2019 | 2020-08-25 17:05:03 | 2020-08-25 15:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4268 | 1 | 15.20 | 15 | instock | 7.54 | -0.619479 | 106.40 | 0.069 | 22.0 | 0.378378 | 228.00 | 12.16 | 37.993421 |
| 669 | 16317 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-02-20 11:38:11 | 2018-02-20 10:38:11 | Vin | Domaine Saint-Denis Bourgogne Rouge Clos de la... | Un Bourgogne rouge plein de finesse et de gour... | publish | closed | closed | domaine-saint-denis-bourgogne-clos-coque-2018 | 2020-08-25 15:25:03 | 2020-08-25 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4250 | 1 | 19.50 | 24 | instock | 9.97 | -0.463794 | 214.50 | 0.140 | 35.0 | 0.372881 | 468.00 | 15.60 | 36.089744 |
| 670 | 16318 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:07:23 | 2018-02-12 11:07:23 | Vin | Mourgues du Grès Costières de Nîmes Galets Rou... | Au nez se dévoilent des arômes élégants de fru... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-galets-rou... | 2020-08-25 15:45:02 | 2020-08-25 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4058 | 1 | 8.70 | 39 | instock | 4.72 | -0.854815 | 113.10 | 0.074 | 52.0 | 0.285714 | 339.30 | 6.96 | 32.183908 |
| 671 | 16319 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 12:56:54 | 2018-02-12 11:56:54 | Vin | Mourgues du Grès Costières de Nîmes Terre de F... | Belle générosité de fruits avec des tanins soy... | publish | closed | closed | mourgues-du-gres-terres-feu-2017 | 2020-08-21 11:25:03 | 2020-08-21 09:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4063 | 1 | 14.50 | 33 | instock | 7.19 | -0.644823 | 174.00 | 0.113 | 45.0 | 0.307692 | 478.50 | 11.60 | 38.017241 |
| 672 | 16320 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-02-12 12:49:29 | 2018-02-12 11:49:29 | Vin | Mourgues du Grès IGP Pont du Gard Terre d'Arge... | Magnifique exemple d’assemblage réussi, ou cha... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-terre-darg... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4062 | 1 | 11.90 | 30 | instock | 6.27 | -0.738957 | 107.10 | 0.070 | 39.0 | 0.260870 | 357.00 | 9.52 | 34.138655 |
| 673 | 16322 | 0 | 0 | 0 | 0.0 | 0.0 | taxable | 2.0 | 2018-02-15 13:51:32 | 2018-02-15 12:51:32 | Vin | Moulin de Gassac IGP Pays d'Hérault Guilhem Ro... | Belle complexité aromatique alliant fruits rou... | publish | closed | closed | moulin-gassac-igp-pays-herault-guilhem-rouge-2019 | 2020-08-26 16:05:03 | 2020-08-26 14:05:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4198 | 1 | 5.80 | 0 | outofstock | 2.97 | -0.959812 | 0.00 | 0.000 | 0.0 | 0.000000 | 0.00 | 4.64 | 35.991379 |
| 674 | 16323 | 0 | 0 | 0 | 0.0 | 14.0 | taxable | 2.0 | 2019-04-06 10:36:51 | 2019-04-06 08:36:51 | Vin | Borie La Vitarèle Languedoc Blanc Le Grand May... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-la-vitarele-languedoc-blanc-grand-mayol-... | 2020-08-27 09:25:48 | 2020-08-27 07:25:48 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5930 | 1 | 14.10 | 0 | outofstock | 6.92 | -0.659305 | 197.40 | 0.129 | 14.0 | 2.000000 | 0.00 | 11.28 | 38.652482 |
| 675 | 16324 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-04-17 16:47:34 | 2018-04-17 14:47:34 | Vin | Cosse Maisonneuve Cahors Solis 2018 | Le nez est puissant et marqué par des notes fu... | publish | closed | closed | matthieu-cosse-cahors-solis-2018 | 2020-07-10 09:30:15 | 2020-07-10 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4686 | 1 | 14.00 | 23 | instock | 7.31 | -0.662925 | 98.00 | 0.064 | 30.0 | 0.264151 | 322.00 | 11.20 | 34.732143 |
| 676 | 16326 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2019-04-18 11:32:46 | 2019-04-18 09:32:46 | Vin | Camin Larredya Jurançon Moelleux Au Capcéu 2018 | Sur le millésime 2017, Au Capceu du domaine Ca... | publish | closed | closed | camin-larredya-jurancon-moelleux-capceu-2018 | 2020-08-27 09:24:46 | 2020-08-27 07:24:46 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5962 | 1 | 30.00 | 8 | instock | 15.50 | -0.083635 | 150.00 | 0.098 | 13.0 | 0.476190 | 240.00 | 24.00 | 35.416667 |
| 677 | 16328 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-09-13 16:43:39 | 2018-09-13 14:43:39 | Vin | Parcé Frères Banyuls Rimage 2018 | <div>Un nez gourmand de cerise, une bouche ric... | publish | closed | closed | parce-freres-banyuls-rimage-2018 | 2020-07-23 09:30:19 | 2020-07-23 07:30:19 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5446 | 1 | 16.20 | 28 | instock | 8.29 | -0.583273 | 145.80 | 0.095 | 37.0 | 0.276923 | 453.60 | 12.96 | 36.033951 |
| 678 | 16330 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-28 13:09:29 | 2018-02-28 12:09:29 | Vin | Château de Cazeneuve Val de Montferrand Rouge ... | La nouvelle cuvée du Château de Cazeneuve prod... | publish | closed | closed | chateau-de-cazeneuve-val-montferrand-caza-sori... | 2020-07-30 18:35:04 | 2020-07-30 16:35:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4281 | 1 | 11.60 | 30 | instock | 5.69 | -0.749819 | 139.20 | 0.091 | 42.0 | 0.333333 | 348.00 | 9.28 | 38.685345 |
| 679 | 16342 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-05-03 11:37:55 | 2018-05-03 09:37:55 | Vin | Château Turcaud Bordeaux Rosé 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-rose-2019 | 2020-08-26 15:45:02 | 2020-08-26 13:45:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4858 | 1 | 6.50 | 0 | outofstock | 3.19 | -0.934468 | 32.50 | 0.021 | 5.0 | 2.000000 | 0.00 | 5.20 | 38.653846 |
| 680 | 16416 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 13:42:28 | 2018-02-12 12:42:28 | Vin | Gilles Robin Crozes-Hermitage Rouge Papillon 2019 | Avec ses arômes de cassis, de myrtille, de cer... | publish | closed | closed | gilles-robin-crozes-hermitage-papillon-2019 | 2020-08-27 16:05:04 | 2020-08-27 14:05:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4068 | 1 | 16.60 | 25 | instock | 8.92 | -0.568791 | 199.20 | 0.130 | 37.0 | 0.387097 | 415.00 | 13.28 | 32.831325 |
| 681 | 16449 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-12 10:50:59 | 2018-02-12 09:50:59 | Vin | Pierre Gaillard Saint-Joseph Blanc 2019 | Ce Saint-Joseph blanc est frais, complexe et t... | publish | closed | closed | pierre-gaillard-saint-joseph-blanc-2019 | 2020-08-24 09:30:15 | 2020-08-24 07:30:15 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4050 | 1 | 21.80 | 42 | instock | 11.26 | -0.380521 | 261.60 | 0.171 | 54.0 | 0.250000 | 915.60 | 17.44 | 35.435780 |
| 682 | 16462 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-12 15:28:10 | 2018-02-12 14:28:10 | Vin | Rimauresq Côtes de Provence Rouge Cru Classé 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | rimauresq-cotes-de-provence-cru-classe-2017 | 2020-08-26 17:15:03 | 2020-08-26 15:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4085 | 1 | 19.00 | 27 | instock | 9.82 | -0.481897 | 152.00 | 0.099 | 35.0 | 0.258065 | 513.00 | 15.20 | 35.394737 |
| 683 | 16472 | 0 | 0 | 0 | 0.0 | 2.0 | taxable | 2.0 | 2019-04-17 09:39:01 | 2019-04-17 07:39:01 | Vin | Domaine de Vaccelli AOP Ajaccio Rouge Granit 1... | Cuvée très confidentielle.\n\nElaborée sur un ... | publish | closed | closed | domaine-de-vaccelli-aop-ajaccio-rouge-granit-1... | 2020-07-17 17:04:58 | 2020-07-17 15:04:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5951 | 1 | 74.50 | 4 | instock | 39.65 | 1.527516 | 149.00 | 0.097 | 6.0 | 0.400000 | 298.00 | 59.60 | 33.473154 |
| 684 | 16497 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-16 14:47:19 | 2018-02-16 13:47:19 | Vin | Pierre Martin Sancerre Chavignol Blanc 2019 | Le nez plaisant, fin et élégant, dévoile des f... | publish | closed | closed | pierre-martin-sancerre-chavignol-blanc-2019 | 2020-08-19 15:25:03 | 2020-08-19 13:25:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4225 | 1 | 16.90 | 27 | instock | 9.08 | -0.557929 | 219.70 | 0.143 | 40.0 | 0.388060 | 456.30 | 13.52 | 32.840237 |
| 685 | 16498 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-12 12:41:06 | 2018-02-12 11:41:06 | Vin | Mourgues du Grès Costières de Nîmes Terre d'Ar... | Sa robe violet/rubis est suivie de fruits noir... | publish | closed | closed | mourgues-du-gres-costieres-de-nimes-argence-ro... | 2020-08-25 11:15:03 | 2020-08-25 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4060 | 1 | 11.90 | 29 | instock | 6.33 | -0.738957 | 154.70 | 0.101 | 42.0 | 0.366197 | 345.10 | 9.52 | 33.508403 |
| 686 | 16501 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-02-28 14:53:17 | 2018-02-28 13:53:17 | Vin | Domaine de La Tour Du Bon Bandol Rouge 2018 | Ce vin se veut accessible mais d’une belle com... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-2018 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4298 | 1 | 23.20 | 17 | instock | 11.99 | -0.329833 | 139.20 | 0.091 | 23.0 | 0.300000 | 394.40 | 18.56 | 35.398707 |
| 687 | 16504 | 0 | 0 | 0 | 0.0 | 16.0 | taxable | 2.0 | 2018-02-13 10:31:33 | 2018-02-13 09:31:33 | Vin | Emile Boeckel Sylvaner Vieilles Vignes 2019 | Vin fortement fruité, très bonne longueur en b... | publish | closed | closed | emile-boeckel-sylvaner-vieilles-vignes-2019 | 2020-08-27 09:28:39 | 2020-08-27 07:28:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4105 | 1 | 6.80 | 45 | instock | 3.51 | -0.923606 | 108.80 | 0.071 | 61.0 | 0.301887 | 306.00 | 5.44 | 35.477941 |
| 688 | 16505 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-13 10:19:23 | 2018-02-13 09:19:23 | Vin | Emile Boeckel Riesling Grand Cru Wiebelsberg 2016 | Vin sec et typé, très floral, au fruité délica... | publish | closed | closed | emile-boeckel-riesling-gc-wiebelsberg-2016 | 2020-08-20 09:30:18 | 2020-08-20 07:30:18 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4103 | 1 | 16.30 | 30 | instock | 8.00 | -0.579652 | 195.60 | 0.128 | 42.0 | 0.333333 | 489.00 | 13.04 | 38.650307 |
| 689 | 16513 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-04-17 22:20:31 | 2018-04-17 20:20:31 | Vin | Domaine Schoenheitz Riesling Herrenreben 2018 | Jaune pâle brillant à reflets or vert. Un nez ... | publish | closed | closed | domaine-schoenheitz-riesling-herrenreben-2018 | 2020-08-26 15:55:04 | 2020-08-26 13:55:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4720 | 1 | 15.90 | 31 | instock | 8.46 | -0.594135 | 206.70 | 0.135 | 44.0 | 0.346667 | 492.90 | 12.72 | 33.490566 |
| 690 | 16515 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-06-02 09:31:31 | 2018-06-02 07:31:31 | Vin | Château Turcaud Bordeaux Rouge Cuvée Majeure 2018 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-bordeaux-rouge-cuvee-majeure-2018 | 2020-08-27 10:11:12 | 2020-08-27 08:11:12 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4964 | 1 | 12.10 | 23 | instock | 6.50 | -0.731716 | 121.00 | 0.079 | 33.0 | 0.357143 | 278.30 | 9.68 | 32.851240 |
| 691 | 16525 | 0 | 0 | 0 | 0.0 | 22.0 | taxable | 2.0 | 2018-04-17 09:28:58 | 2018-04-17 07:28:58 | Vin | Bernard Baudry Chinon Rouge La Croix Boissée 2017 | Sur ce sol très calcaire, la Croix Boissée dél... | publish | closed | closed | bernard-baudry-chinon-rouge-croix-boissee-2017 | 2020-07-31 09:31:39 | 2020-07-31 07:31:39 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4647 | 1 | 28.50 | 45 | instock | 14.14 | -0.137944 | 627.00 | 0.409 | 67.0 | 0.392857 | 1282.50 | 22.80 | 37.982456 |
| 692 | 16527 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2018-04-17 22:17:45 | 2018-04-17 20:17:45 | Vin | Domaine Schoenheitz Pinot Noir Tradition 2019 | Rouge cerise à reflets grenat. Nez intense aux... | publish | closed | closed | domaine-schoenheitz-pinot-noir-tradition-2019 | 2020-08-27 09:30:17 | 2020-08-27 07:30:17 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4719 | 1 | 12.50 | 23 | instock | 6.46 | -0.717234 | 137.50 | 0.090 | 34.0 | 0.385965 | 287.50 | 10.00 | 35.400000 |
| 693 | 16529 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 10:58:12 | 2018-02-15 09:58:12 | Vin | Château de La Liquière Faugères Cistus Blanc 2019 | Un nez de fruits blancs mûrs mêlés de vanille ... | publish | closed | closed | chateau-de-la-liquiere-faugeres-cistus-blanc-2019 | 2020-08-22 11:15:03 | 2020-08-22 09:15:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4193 | 1 | 13.50 | 34 | instock | 6.91 | -0.681028 | 175.50 | 0.114 | 47.0 | 0.320988 | 459.00 | 10.80 | 36.018519 |
| 694 | 16537 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-27 10:56:17 | 2018-02-27 09:56:17 | Vin | Domaine Bulliat Morgon Amphore Cou de Jus 2019 | Un grand Morgon aux tanins d’une grande douceu... | publish | closed | closed | domaine-bulliat-morgon-amphore-cou-de-jus-2019 | 2020-08-27 09:26:52 | 2020-08-27 07:26:52 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4267 | 1 | 19.00 | 26 | instock | 9.33 | -0.481897 | 228.00 | 0.149 | 38.0 | 0.375000 | 494.00 | 15.20 | 38.618421 |
| 695 | 16539 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2019-03-28 10:42:01 | 2019-03-28 09:42:01 | Vin | Thevenet Quintaine Viré-Clessé Emilian Gillet ... | Les vignes du Domaine Emilian Gillet s’épanoui... | publish | closed | closed | thevenet-quintaine-vire-clesse-emilian-gillet-... | 2020-08-27 15:35:03 | 2020-08-27 13:35:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5894 | 1 | 15.40 | 29 | instock | 7.56 | -0.612238 | 154.00 | 0.100 | 39.0 | 0.294118 | 446.60 | 12.32 | 38.636364 |
| 696 | 16540 | 0 | 0 | 0 | 0.0 | 5.0 | taxable | 2.0 | 2018-04-18 12:00:04 | 2018-04-18 10:00:04 | Vin | Paul Ginglinger Riesling Grand Cru Pfersigberg... | Un Riesling tout en droiture et en gourmandise... | publish | closed | closed | paul-ginglinger-riesling-grand-cru-pfersigberg... | 2020-08-27 16:55:02 | 2020-08-27 14:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4727 | 1 | 26.00 | 15 | instock | 12.90 | -0.228458 | 130.00 | 0.085 | 20.0 | 0.285714 | 390.00 | 20.80 | 37.980769 |
| 697 | 16553 | 0 | 0 | 0 | 0.0 | 7.0 | taxable | 2.0 | 2018-02-28 15:20:21 | 2018-02-28 14:20:21 | Vin | Domaine de La Tour Du Bon Bandol Rosé 2019 | D’une teinte ocrée, la robe est douce au regar... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-rose-2019 | 2020-08-26 14:55:02 | 2020-08-26 12:55:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4301 | 1 | 17.50 | 19 | instock | 9.49 | -0.536206 | 122.50 | 0.080 | 26.0 | 0.311111 | 332.50 | 14.00 | 32.214286 |
| 698 | 16560 | 0 | 0 | 0 | 0.0 | 13.0 | taxable | 2.0 | 2018-02-15 09:12:13 | 2018-02-15 08:12:13 | Vin | Borie La Vitarèle Saint-Chinian Les Terres Bla... | <div class="row">\n<div class="features-value ... | publish | closed | closed | borie-vitarele-saint-chinian-terres-blanches-2019 | 2020-08-25 10:25:02 | 2020-08-25 08:25:02 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4181 | 1 | 11.90 | 43 | instock | 6.21 | -0.738957 | 154.70 | 0.101 | 56.0 | 0.262626 | 511.70 | 9.52 | 34.768908 |
| 699 | 16564 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-04-19 13:41:51 | 2018-04-19 11:41:51 | Vin | Paul Ginglinger Pinot Blanc 2017 | Issu d'un assemblage complexe entre différente... | publish | closed | closed | paul-ginglinger-pinot-blanc-2017 | 2020-08-27 16:45:03 | 2020-08-27 14:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4782 | 1 | 9.80 | 19 | instock | 5.01 | -0.814989 | 88.20 | 0.058 | 28.0 | 0.382979 | 186.20 | 7.84 | 36.096939 |
| 700 | 16565 | 0 | 0 | 0 | 0.0 | 11.0 | taxable | 2.0 | 2019-07-24 09:28:46 | 2019-07-24 07:28:46 | Vin | Domaine Giudicelli Vin de France Corail Rouge ... | Infusion de vieux Grenache et de Sciacarello t... | publish | closed | closed | domaine-giudicelli-vin-de-france-corail-rouge-... | 2020-08-27 11:45:03 | 2020-08-27 09:45:03 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6205 | 1 | 20.20 | 38 | instock | 10.54 | -0.438450 | 222.20 | 0.145 | 49.0 | 0.252874 | 767.60 | 16.16 | 34.777228 |
| 701 | 16567 | 0 | 0 | 0 | 0.0 | 10.0 | taxable | 2.0 | 2018-02-20 09:23:00 | 2018-02-20 08:23:00 | Vin | Domaine Augustin Collioure Blanc Adéodat 2019 | <div class="m-product_description">\n<div id="... | publish | closed | closed | augustin-collioure-blanc-adeodat-2019 | 2020-08-27 10:24:51 | 2020-08-27 08:24:51 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4239 | 1 | 28.00 | 27 | instock | 14.76 | -0.156046 | 280.00 | 0.183 | 37.0 | 0.312500 | 756.00 | 22.40 | 34.107143 |
| 702 | 16578 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-02-28 14:57:26 | 2018-02-28 13:57:26 | Vin | Domaine de La Tour Du Bon Bandol Rouge Saint F... | Cette cuvée est née en 1987 d’un désir d’isole... | publish | closed | closed | domaine-de-la-tour-du-bon-bandol-saint-ferreol... | 2020-08-27 09:53:10 | 2020-08-27 07:53:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4299 | 1 | 39.10 | 10 | instock | 19.19 | 0.245836 | 312.80 | 0.204 | 18.0 | 0.571429 | 391.00 | 31.28 | 38.650895 |
| 703 | 16580 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2019-07-24 09:31:48 | 2019-07-24 07:31:48 | Vin | Domaine Giudicelli Patrimonio Blanc 2019 | Ce Patrimonio Blanc signé Muriel Giudicelli no... | publish | closed | closed | domaine-giudicelli-patrimonio-blanc-2019 | 2020-08-27 10:12:58 | 2020-08-27 08:12:58 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 6206 | 1 | 25.20 | 16 | instock | 13.15 | -0.257422 | 201.60 | 0.131 | 24.0 | 0.400000 | 403.20 | 20.16 | 34.771825 |
| 704 | 16585 | 0 | 0 | 0 | 0.0 | 15.0 | taxable | 2.0 | 2018-02-16 14:03:16 | 2018-02-16 13:03:16 | Vin | Xavier Frissant Touraine Sauvignon 2019 | Un joli sauvignon frais et minéral, avec d'int... | publish | closed | closed | xavier-frissant-touraine-sauvignon-2019 | 2020-08-27 09:30:36 | 2020-08-27 07:30:36 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4223 | 1 | 9.70 | 42 | instock | 4.81 | -0.818610 | 145.50 | 0.095 | 57.0 | 0.303030 | 407.40 | 7.76 | 38.015464 |
| 705 | 16586 | 0 | 0 | 0 | 0.0 | 9.0 | taxable | 2.0 | 2018-06-02 09:35:14 | 2018-06-02 07:35:14 | Vin | Château Turcaud Entre-Deux-Mers 2019 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | chateau-turcaud-entre-deux-mers-2019 | 2020-08-27 10:10:25 | 2020-08-27 08:10:25 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4965 | 1 | 7.10 | 24 | instock | 3.67 | -0.912744 | 63.90 | 0.042 | 33.0 | 0.315789 | 170.40 | 5.68 | 35.387324 |
| 706 | 19814 | 0 | 0 | 0 | 0.0 | 12.0 | taxable | 2.0 | 2018-02-09 14:01:05 | 2018-02-09 13:01:05 | Vin | Pierre Jean Villa IGP Collines Rhodaniennes Ga... | Gamine représente tout le fruité et la gourman... | publish | closed | closed | pierre-jean-villa-igp-gamine-2018 | 2020-01-04 16:36:01 | 2020-01-04 15:36:01 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4032 | 1 | 14.10 | 26 | instock | 6.92 | -0.659305 | 169.20 | 0.110 | 38.0 | 0.375000 | 366.60 | 11.28 | 38.652482 |
| 707 | 19815 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 09:04:37 | 2018-02-12 08:04:37 | Vin | Pierre Jean Villa Côte Rôtie Carmina 2017 | Le côte rôtie Carmina monte en puissance mais ... | publish | closed | closed | pierre-jean-villa-cote-rotie-carmina-2017 | 2020-01-04 16:36:10 | 2020-01-04 15:36:10 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4039 | 1 | 46.00 | 3 | outofstock | 23.77 | 0.495655 | 138.00 | 0.090 | 6.0 | 0.666667 | 138.00 | 36.80 | 35.407609 |
| 708 | 19816 | 0 | 0 | 0 | 0.0 | 3.0 | taxable | 2.0 | 2018-02-12 11:25:39 | 2018-02-12 10:25:39 | Vin | Clos du Mont-Olivet Châteauneuf-du-Pape Cuvée ... | Fleuron du domaine, élaboré uniquement lors de... | publish | closed | closed | clos-du-mont-olivet-chateauneuf-du-pape-papet-... | 2020-06-09 15:41:44 | 2020-06-09 13:41:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 4054 | 1 | 71.60 | 6 | instock | 38.47 | 1.422520 | 214.80 | 0.140 | 9.0 | 0.400000 | 429.60 | 57.28 | 32.838687 |
| 709 | 19820 | 0 | 0 | 0 | 0.0 | 6.0 | taxable | 2.0 | 2018-11-26 10:54:29 | 2018-11-26 09:54:29 | Vin | Tempier Bandol Migoua 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-migoua-2017 | 2019-11-02 12:59:44 | 2019-11-02 11:59:44 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5561 | 1 | 58.00 | 8 | instock | 30.27 | 0.930123 | 348.00 | 0.227 | 14.0 | 0.545455 | 464.00 | 46.40 | 34.762931 |
| 710 | 19821 | 0 | 0 | 0 | 0.0 | 8.0 | taxable | 2.0 | 2018-11-26 10:56:30 | 2018-11-26 09:56:30 | Vin | Tempier Bandol Tourtine 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-tourtine-2017 | 2019-11-02 12:59:24 | 2019-11-02 11:59:24 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5563 | 1 | 58.00 | 16 | instock | 29.07 | 0.930123 | 464.00 | 0.303 | 24.0 | 0.400000 | 928.00 | 46.40 | 37.349138 |
| 711 | 19822 | 0 | 0 | 0 | 0.0 | 1.0 | taxable | 2.0 | 2018-11-26 10:59:10 | 2018-11-26 09:59:10 | Vin | Tempier Bandol Cabassaou 2017 | <div id="wrapper">\n<div id="container-wrapper... | publish | closed | closed | tempier-bandol-cabassaou-2017 | 2020-01-04 13:57:04 | 2020-01-04 12:57:04 | 0.0 | https://www.bottle-neck.fr/?post_type=product&... | 0.0 | product | NaN | 0.0 | 5565 | 1 | 92.00 | 0 | outofstock | 46.11 | 2.161115 | 92.00 | 0.060 | 1.0 | 2.000000 | 0.00 | 73.60 | 37.350543 |